Inspect and view changes in Send Link and Show source codes across current and past versions
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,
"author": "peturdainn",
"developer": {
"name": "peturdainn",
"url": "https://github.com/peturdainn"
},
"homepage_url": "https://github.com/peturdainn/send-link-and-show",
"name": "Send Link and Show",
"description": "Send links via customizable context-menu-entries as GET requests to an equally configurable server, and show the result in a new tab",
"version": "0.0.2",
"icons": {
"48": "icon.png"
},
"permissions": [
"contextMenus",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html",
"browser_style": true
}
}