mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* Replaced clearbit API (deprecated) with Google's favicon snatcher * Updated UI designs for optional_permissions examples of both mv2 and mv3 Using chrome's build in favicon provider for optional_permissions examples * Run linter --------- Co-authored-by: Oliver Dunk <oliverdunk@google.com>
18 lines
445 B
JSON
18 lines
445 B
JSON
{
|
|
"name": "Optional Permissions New Tab",
|
|
"version": "1.0.0",
|
|
"description": "Demonstrates optional permissions in extensions",
|
|
"permissions": ["storage", "favicon"],
|
|
"optional_permissions": ["topSites"],
|
|
"icons": {
|
|
"16": "images/icon16.png",
|
|
"32": "images/icon32.png",
|
|
"48": "images/icon48.png",
|
|
"128": "images/icon128.png"
|
|
},
|
|
"chrome_url_overrides": {
|
|
"newtab": "newtab.html"
|
|
},
|
|
"manifest_version": 3
|
|
}
|