jdCaptcha add-on to access jdCaptcha website and features faster.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "jdCaptcha",
"description": "jdCaptcha add-on to access jdCaptcha website and features faster.",
"version": "1.0.1",
"homepage_url": "http://www.vincescodes.com/jdcaptcha",
"icons": {
"16": "data/logo-16.png",
"48": "data/logo-48.png",
"128": "data/logo-128.png"
},
"offline_enabled": false,
"browser_action": {
"default_icon": "data/logo-16.png",
"default_popup": "data/panel.html"
},
"options_page": "data/settings.html",
"background": {
"scripts": [
"data/background.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"data/content.js"
]
}
],
"permissions": [
"storage",
"tabs",
"http://www.vincescodes.com/*"
],
"web_accessible_resources": [
"data/tablet-24.png",
"data/computer-24.png",
"data/smartphone-24.png",
"data/phablet-24.png"
]
}