Icons for chrome://extensions page?

This commit is contained in:
David Ralph 2019-12-26 13:15:31 +00:00
parent 85a3ce0769
commit 1055427e33
4 changed files with 11 additions and 6 deletions

View File

@ -5,10 +5,15 @@
"description": "Fast, open and free-to-use new tab page for most modern browsers.",
"version": "0.7.1",
"browser_action": {
"default_icon": "./extension-icon.png"
"default_icon": "./icons/extension-icon.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-Q/fJeEyXf7ZhxjXeAydpu6mDGAmyqvj93tDPNxGThn0='; object-src 'self'"
"content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-Q/fJeEyXf7ZhxjXeAydpu6mDGAmyqvj93tDPNxGThn0='; object-src 'self'",
"icons": {
"16": "./icons/16x16-circle.png",
"48": "./icons/48x48-circle.png",
"128": "./icons/128x128-circle.png"
}
}

View File

@ -4,7 +4,7 @@
"description": "Fast, open and free-to-use new tab page for most modern browsers.",
"version": "0.7.1",
"browser_action": {
"default_icon": "./extension-icon.png"
"default_icon": "./icons/extension-icon.png"
},
"chrome_url_overrides": {
"newtab": "index.html"

View File

@ -4,7 +4,7 @@
"description": "Fast, open and free-to-use new tab page for most modern browsers.",
"version": "0.7.1",
"browser_action": {
"default_icon": "./extension-icon.png"
"default_icon": "./icons/extension-icon.png"
},
"background": {
"scripts": [

View File

@ -4,8 +4,8 @@
<head>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1' />
<link rel='icon' type='image/png' sizes='32x32' href='favicon-32x32.png'>
<link rel='icon' type='image/png' sizes='16x16' href='favicon-16x16.png'>
<link rel='icon' type='image/png' sizes='32x32' href='./icons/favicon-32x32.png'>
<link rel='icon' type='image/png' sizes='16x16' href='./icons/favicon-16x16.png'>
<title>New Tab</title>
</head>