Inspect and view changes in Pinboard Extension 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,
"browser_action": {
"default_icon": "img/pinboard16.png",
"default_title": "Pinboard Tools",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"pinboard_content_script.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
},
{
"js": [
"pinboard_iframe_content.js"
],
"matches": [
"https://pinboard.in/add*"
],
"all_frames": true
}
],
"description": "Toolbar actions for Pinboard (http://pinboard.in)",
"icons": {
"16": "img/pinboard16.png",
"32": "img/pinboard32.png",
"48": "img/pinboard48.png",
"128": "img/pinboard128.png"
},
"name": "Pinboard Tools",
"permissions": [
"tabs",
"<all_urls>"
],
"version": "1.1.0"
}