mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-28 03:47:00 +02:00
21 lines
373 B
JSON
21 lines
373 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Override examples",
|
|
"version": "0.1",
|
|
"chrome_url_overrides": {
|
|
"newtab": "sites.html"
|
|
},
|
|
"chrome_settings_overrides": {
|
|
"homepage": "sites.html"
|
|
},
|
|
"permissions": [
|
|
"topSites"
|
|
],
|
|
"applications": {
|
|
"gecko": {
|
|
"strict_min_version": "55.0a1",
|
|
"id": "foo@bar.com"
|
|
}
|
|
}
|
|
}
|