Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"browser_action": {
"default_icon": "img\/pinboard16.png",
"default_title": "Pinboard",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"pinboard_content_script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
},
{
"js": [
"pinboard_iframe_content_script.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",
"128": "img\/pinboard128.png"
},
"name": "Pinboard Tools",
"short_name": "Pinboard Tools",
"permissions": [
"tabs",
"<all_urls>"
],
"version": "1.0.1"
}