Inspect and view changes in Add container name to title 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
{
"manifest_version": 3,
"name": "Add container name to title",
"description": "This appends container name to the end of page title.",
"version": "1.0.0",
"homepage_url": "https://github.com/Qwertovsky/container_name_title_addon",
"icons": {
"512": "icons/add-container-in-title.png"
},
"background": {
"scripts": [
"background_script.js"
]
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"tabs",
"activeTab",
"scripting",
"contextualIdentities"
],
"browser_specific_settings": {
"gecko": {
"id": "container_name_title@addons.qwertovsky.com",
"strict_min_version": "109.0"
}
}
}