mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
Changes to account for the fact that "headerURL":, "accentcolor":, and "textcolor": have been replaced by "theme_frame": , "frame":, and "tab_text": respectively. In addition, removed the empty.png image files, as these are no longer needed. Also added an example of use of theme_inactive to weta_tiled.
24 lines
606 B
JSON
Executable File
24 lines
606 B
JSON
Executable File
{
|
|
|
|
"description": "Theme using multiple additional_backgrounds images. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#themes",
|
|
"manifest_version": 2,
|
|
"name": "weta_mirror",
|
|
"version": "1.1",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/themes/weta_mirror",
|
|
|
|
"theme": {
|
|
"images": {
|
|
"additional_backgrounds": [ "weta.png", "weta-left.png"]
|
|
},
|
|
|
|
"properties": {
|
|
"additional_backgrounds_alignment": [ "right top" , "left top" ]
|
|
},
|
|
|
|
"colors": {
|
|
"frame": "#adb09f",
|
|
"tab_text": "#000"
|
|
}
|
|
}
|
|
}
|