Elegant flower wallpapers and inspiring quotes that creates a delightful new tab experience.
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": "Floral Quotes Wallpapers New Tab",
"description": "Elegant flower wallpapers and inspiring quotes that creates a delightful new tab experience.",
"version": "3.0.39",
"short_name": "Floral Quotes",
"permissions": [
"storage",
"topSites"
],
"icons": {
"16": "icons/16.png",
"38": "icons/38.png",
"48": "icons/48.png",
"64": "icons/64.png",
"128": "icons/128.png"
},
"action": {
"default_icon": {
"64": "icons/64.png",
"128": "icons/128.png"
},
"default_title": "Floral Quotes Wallpapers New Tab"
},
"background": {
"service_worker": "main.js",
"type": "module"
},
"externally_connectable": {
"matches": [
"*://*.floralquotestab.com/*"
]
},
"chrome_url_overrides": {
"newtab": "newtab/index.html"
},
"content_scripts": [
{
"matches": [
"*://*.floralquotestab.com/*"
],
"js": [
"js/content-scripts/installed.js",
"js/content-scripts/event-handler.js"
],
"run_at": "document_start"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://mystart.mystartcdn.com https://*.firebaseio.com;style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://mystart.mystartcdn.com https://maxcdn.bootstrapcdn.com",
"sandbox": "sandbox allow-scripts; script-src 'self' 'https://apis.google.com/' 'https://www.gstatic.com/' 'https://*.firebaseio.com' 'https://*.firebasedatabase.app' 'https://www.googleapis.com' 'https://ajax.googleapis.com'; object-src 'self'"
},
"manifest_version": 3
}