Simply displays a high resolution photo of an art piece 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
{
"manifest_version": 3,
"name": "__MSG_ext_name__",
"short_name": "artie",
"description": "__MSG_ext_description__",
"version": "0.9.1",
"icons": {
"16": "icons/icon-16.png",
"24": "icons/icon-24.png",
"32": "icons/icon-32.png",
"128": "icons/icon-128.png"
},
"background": {
"service_worker": "/js/background.js"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"storage"
],
"default_locale": "en",
"host_permissions": [
"https://metmuseum.org/*",
"https://images.metmuseum.org/*"
],
"minimum_chrome_version": "100",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}