A website that gives you a clean homepage with random backgrounds!
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": 2,
"content_security_policy": "script-src 'self'; object-src 'self';",
"name": "AlexFlipnote/Homepage",
"description": "A website that gives you a clean homepage with random backgrounds!",
"homepage_url": "https://alexflipnote.dev",
"version": "2.0.5",
"chrome_url_overrides": {
"newtab": "indexPlugin.html"
},
"icons": {
"16": "assets/images/16.png",
"32": "assets/images/32.png",
"48": "assets/images/48.png",
"128": "assets/images/128.png"
},
"browser_action": {
"default_icon": "assets/images/logo.png",
"default_popup": "assets/window.html"
},
"background": {
"scripts": [
"assets/js/plugin.js",
"assets/js/demo.js",
"assets/js/moment-with-locales.min.js"
]
},
"web_accessible_resources": [
"indexPlugin.html"
],
"options_ui": {
"page": "assets/options.html",
"open_in_tab": true
},
"minimum_chrome_version": "37",
"applications": {
"gecko": {
"strict_min_version": "54.0"
}
},
"permissions": [
"tabs",
"geolocation",
"https://api.openweathermap.org/*",
"storage"
]
}