Es la onda
var selection = require("selection");
var contextMenu = require("context-menu");
exports.main = function(){
contextMenu.Item({
label: 'Show in Fixed Font',
contentScript: 'self.on("click", function () { self.postMessage() } )',
onMessage: function(){
if(selection.text)
selection.html = ''+selection.html+'';
},
context: contextMenu.SelectorContext('p')
})
}
.
├── addon-kit
│ ├── README.md
│ ├── data
│ ├── docs
│ ├── lib
│ ├── locale
│ ├── package.json
│ └── tests