Adds "Goto <selected text as url>" to the right-click menu.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Goto foo",
"version": "1.7",
"description": "Adds \"Goto <selected text as url>\" to the right-click menu.",
"homepage_url": "https://github.com/pmarks-net/gotofoo",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"32": "icon32.png",
"128": "icon128.png"
},
"permissions": [
"contextMenus",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "{a12a18be-af05-41d1-9c8b-7636a0b7978a}"
}
}
}