mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
27 lines
609 B
JSON
27 lines
609 B
JSON
{
|
|
"browser_action": {
|
|
"default_title": "Theme switcher",
|
|
"default_popup": "switcher.html",
|
|
"browser_style": true,
|
|
"default_icon": {
|
|
"128": "star-half.svg"
|
|
}
|
|
},
|
|
"description": "An example of how to use the management API for themes.",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/theme-switcher",
|
|
"manifest_version": 2,
|
|
"name": "Theme Switcher",
|
|
"permissions": [
|
|
"management"
|
|
],
|
|
"icons": {
|
|
"128": "star-half.svg"
|
|
},
|
|
"version": "1.0",
|
|
"applications": {
|
|
"gecko": {
|
|
"strict_min_version": "55.0a1"
|
|
}
|
|
}
|
|
}
|