Inspect and view changes in Productivity Extension 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": "Productivity Extension",
"version": "1.0.0",
"description": "An extension that can help improve your productivity by limiting access to social media or any website the user choose to block.",
"icons": {
"128": "png/128.png"
},
"action": {
"default_popup": "html/popup.html",
"default_icon": {
"128": "png/128.png"
}
},
"permissions": [
"storage",
"tabs"
],
"background": {
"service_worker": "js/background.js",
"presistent": false
},
"manifest_version": 3
}