Inspect and view changes in Dogs Backgrounds 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",
"chrome_url_overrides": {
"newtab": "main.html"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://dogstab.xyz/newtab/newtab.html"
],
"css": [
"css/inject.css"
],
"js": [
"jquery.js",
"jquery.rotate.js",
"jClocksGMT.js",
"inject.js"
],
"run_at": "document_idle"
}
],
"description": "Productivity with a twist of great dogs background images for your chrome browser.",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
}
},
"icons": {
"32": "logo.png",
"48": "logo.png",
"96": "logo.png",
"128": "logo.png"
},
"manifest_version": 3,
"name": "Dogs Backgrounds",
"version": "1.0.0.4",
"web_accessible_resources": [
{
"resources": [
"images/*"
],
"matches": [
"<all_urls>"
]
}
]
}