View dynamic digital art every time you open a new tab.
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": "ArtTab",
"version": "1.17",
"description": "View dynamic digital art every time you open a new tab.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"background": {
"service_worker": "service_worker.js"
},
"options_page": "settings/settings.html",
"permissions": [
"storage",
"contextMenus"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"shared/*",
"settings/*"
],
"matches": [
"<all_urls>"
]
}
]
}