├── .gitignore ├── README.md ├── _locales └── en │ └── messages.json ├── img └── background.gif └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoth-in/Dark-Space-Theme/d1676be9bb5c2ef099f10cdb815b99f634956d3d/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dark space - The best dynamic theme 2 | 3 | — Most popular and Highest rated Firefox Theme 🎉 4 | 5 | ![preview](https://addons.mozilla.org/user-media/version-previews/full/3827/3827732.svg) 6 | 7 | Simple dark theme with dynamic background. Based on video [Animation of Stars](https://vimeo.com/309240312) on Vimeo under Creative Commons (CC0) license. 8 | -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "extensionName": { 3 | "message": "Dark space - The best dynamic theme", 4 | "description": "Name of the extension." 5 | }, 6 | 7 | "extensionDescription": { 8 | "message": "Animated stars in dark theme. Seamless video background with particles moving around. Enjoy.", 9 | "description": "Description of the extension." 10 | }, 11 | 12 | "extensionAuthor": { 13 | "message": "Artyom Polyanskiy", 14 | "description": "That is my name :p" 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /img/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoth-in/Dark-Space-Theme/d1676be9bb5c2ef099f10cdb815b99f634956d3d/img/background.gif -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "version": "1.1.2", 4 | 5 | "default_locale": "en", 6 | "name": "__MSG_extensionName__", 7 | "description": "__MSG_extensionDescription__", 8 | "author": "__MSG_extensionAuthor__", 9 | 10 | "browser_specific_settings": { 11 | "gecko": { 12 | "id": "{22b0eca1-8c02-4c0d-a5d7-6604ddd9836e}", 13 | "strict_min_version": "89.0" 14 | } 15 | }, 16 | 17 | "theme": { 18 | "images": { 19 | "additional_backgrounds": ["img/background.gif"] 20 | }, 21 | "properties": { 22 | "additional_backgrounds_tiling": ["repeat-x"] 23 | }, 24 | "colors": { 25 | "button_background_active": "#333333", 26 | "button_background_hover": "#282828", 27 | "bookmark_text": "rgba(255, 255, 255, 0.8)", 28 | "frame": "#000000", 29 | "frame_inactive": "#000000", 30 | "icons": "rgba(255, 255, 255, 0.8)", 31 | "icons_attention": "#9400ff", 32 | "ntp_background": "#000000", 33 | "ntp_text": "rgba(255, 255, 255, 0.8)", 34 | "popup": "#101010", 35 | "popup_border": "#303030", 36 | "popup_highlight": "#303030", 37 | "popup_highlight_text": "white", 38 | "popup_text": "rgba(255, 255, 255, 0.8)", 39 | "sidebar": "#101010", 40 | "sidebar_border": "#303030", 41 | "sidebar_highlight": "#303030", 42 | "sidebar_highlight_text": "white", 43 | "sidebar_text": "rgba(255, 255, 255, 0.8)", 44 | "tab_background_separator": "transparent", 45 | "tab_background_text": "#aaaaaa", 46 | "tab_loading": "white", 47 | "tab_selected": "rgba(200, 200, 200, 0.1)", 48 | "tab_text": "#ffffff", 49 | "tab_line": "rgba(255, 255, 255, 0.05)", 50 | "toolbar": "rgba(18, 18, 18, 0.8)", 51 | "toolbar_bottom_separator": "#101010", 52 | "toolbar_field": "#000000", 53 | "toolbar_field_border": "transparent", 54 | "toolbar_field_border_focus": "#303030", 55 | "toolbar_field_focus": "#111111", 56 | "toolbar_field_highlight": "#333333", 57 | "toolbar_field_highlight_text": "white", 58 | "toolbar_field_separator": "#101010", 59 | "toolbar_field_text": "rgba(255, 255, 255, 0.8)", 60 | "toolbar_field_text_focus": "white", 61 | "toolbar_top_separator": "rgba(18, 18, 18, 0.0)", 62 | "toolbar_vertical_separator": "rgba(255, 255, 255, 0.06)" 63 | } 64 | } 65 | } 66 | --------------------------------------------------------------------------------