Inspect and view changes in Better PWAs 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",
"manifest_version": 3,
"name": "Better PWAs",
"version": "1.1.0",
"description": "Improved installable web apps for selected sites.",
"icons": {
"48": "images/icon48.png",
"512": "images/icon512.png"
},
"action": {
"default_icon": {
"48": "images/iconDisabled48.png"
},
"default_title": "Better PWA: No betterment available"
},
"permissions": [
"declarativeNetRequest",
"storage",
"tabs",
"scripting"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"host_permissions": [
"https://github.com/*"
],
"content_scripts": [
{
"matches": [
"https://www.smh.com.au/*"
],
"js": [
"manifests/www.smh.com.au.js",
"injectManifest.js"
]
},
{
"matches": [
"https://app.slack.com/*"
],
"js": [
"manifests/app.slack.com.js",
"injectManifest.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"manifests/icons/github-256-maskable.png"
],
"matches": [
"https://github.com/*"
]
},
{
"resources": [
"manifests/icons/slack-512.png",
"manifests/icons/slack-144.png",
"manifests/icons/slack-512-maskable.png"
],
"matches": [
"https://app.slack.com/*"
]
}
]
}