Inspect and view changes in Confluence 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",
"name": "Confluence",
"description": "Chrome Extension for Confluence Cloud ",
"short_name": "confluence",
"author": "Thierry Dalon",
"host_permissions": [
"https://*.atlassian.net/wiki/"
],
"version": "1.0",
"manifest_version": 3,
"permissions": [
"storage",
"contextMenus",
"scripting",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"default_popup": "search.html#popup"
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"commands": {
"_execute_action": {
"description": "Open Confluence Quick Search",
"global": true,
"suggested_key": {
"chromeos": "Ctrl+Shift+K",
"linux": "Ctrl+Shift+K",
"mac": "Command+Shift+K",
"windows": "Ctrl+Shift+K"
}
}
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"omnibox": {
"keyword": "c"
}
}