Files
webextensions-examples/themes/weta_tiled/manifest.json
Richard Bloor 5ff8febb9f Theme manifest key updates
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.
2019-05-22 06:50:37 +12:00

26 lines
791 B
JSON

{
"description": "Theme with a single image placed centrally and then tiled. Also, illustrates the use of frame_inactive to change the header background color when the browser window isn't in focus. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#themes",
"manifest_version": 2,
"name": "weta_tiled",
"version": "1.1",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/themes/weta_tiled",
"theme": {
"images": {
"additional_backgrounds": "weta_for_tiling.png"
},
"properties": {
"additional_backgrounds_alignment": [ "top" ],
"additional_backgrounds_tiling": [ "repeat" ]
},
"colors": {
"frame": "#adb09f",
"frame_inactive": "#000",
"tab_text": "#000"
}
}
}