mini browser on the toolbar
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_extension_name__",
"version": "1.0.16",
"description": "__MSG_extension_description__",
"manifest_version": 3,
"minimum_chrome_version": "88",
"action": {
"default_popup": "$popup.html",
"default_title": "__MSG_extension_action_title__"
},
"icons": {
"16": "$_logo_16.png",
"32": "$_logo_32.png",
"48": "$_logo_48.png",
"128": "$_logo_128.png"
},
"default_locale": "en",
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"browser.html",
"contentScript_0.css",
"contentScript_0.js"
]
}
],
"permissions": [
"sidePanel",
"contextMenus",
"scripting",
"declarativeNetRequest",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"run_at": "document_start",
"all_frames": true,
"js": [
"contentScript_0.js"
],
"css": []
}
],
"background": {
"service_worker": "background.js"
},
"commands": {
"toggle_toolbrowser": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "MacCtrl+Shift+X"
},
"description": "__MSG_commands_toggle_toolbrowser__"
},
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "MacCtrl+Shift+D"
}
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}