Simple Web Tools
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": "Simple Web Tools",
"description": "Simple Web Tools",
"version": "1.0.1",
"permissions": [
"tabs"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"default_title": "Simple Web Tools"
},
"icons": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content_script.js"
]
}
],
"manifest_version": 3
}