Conceptualizes browsers for our clients to the freeSchema.com,inc database.
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": "BoomConsole",
"description": "Conceptualizes browsers for our clients to the freeSchema.com,inc database.",
"version": "2.0.16",
"icons": {
"128": "icon_128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "login.html"
},
"background": {
"page": "background.html",
"persistent": true
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"run_at": "document_start",
"js": [
"js/contentscript.js"
]
}
],
"permissions": [
"activeTab",
"<all_urls>",
"storage"
]
}