Inspect and view changes in h3-bubbleify 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "h3-bubbleify",
"version": "1.1.2",
"default_locale": "zh_CN",
"description": "__MSG_pluginDesc__",
"permissions": [
"activeTab",
"http://*/*",
"https://*/*",
"file:///*",
"contextMenus",
"storage"
],
"icons": {
"16": "asset/img/icon_16.png",
"32": "asset/img/icon_32.png",
"48": "asset/img/icon_48.png",
"128": "asset/img/icon_128.png"
},
"browser_action": {
"default_icon": "asset/img/icon_32.png",
"default_popup": "popup/popup.html"
},
"devtools_page": "devtools-background.html",
"background": {
"scripts": [
"output/background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"output/inject-hook.js"
],
"run_at": "document_start"
}
]
}