diff --git a/CHANGELOG.md b/CHANGELOG.md index 075fac71..7a057e53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Changelog --- +# 4.0.0 [Kanna Kamui] + +- Added Miss Kobayashi's Dragon Maid's `Kanna` as a dark theme! + +![The New Girl](https://doki.assets.unthrottled.io/misc/v10_girl.png?version=1) + # 3.0.0 [Misato Katsuragi] - Added Neon Genesis Evangelion's `Misato Katsuragi` as a dark theme! diff --git a/buildAssets/templates/manifest.template.json b/buildAssets/templates/manifest.template.json index b7d829ba..094dbd4d 100644 --- a/buildAssets/templates/manifest.template.json +++ b/buildAssets/templates/manifest.template.json @@ -1,6 +1,6 @@ { "name": "The Doki Theme", - "version": "3.0.0", + "version": "4.0.0", "description": "Anime based themes for your chrome browser!", "theme": { "images": { diff --git a/buildAssets/themes/definitions/dragonMaid/kanna/dark/kanna.dark.chrome.definition.json b/buildAssets/themes/definitions/dragonMaid/kanna/dark/kanna.dark.chrome.definition.json new file mode 100644 index 00000000..48325c34 --- /dev/null +++ b/buildAssets/themes/definitions/dragonMaid/kanna/dark/kanna.dark.chrome.definition.json @@ -0,0 +1,13 @@ +{ + "id": "b93ab4ea-ff96-4459-8fa2-0caae5bc7116", + "overrides": { + "theme": { + "colors": { + "omnibox_text": "&classNameColor&" + } + } + }, + "laf": {}, + "syntax": {}, + "colors": {} +} diff --git a/buildSrc/src/BuildThemes.ts b/buildSrc/src/BuildThemes.ts index 93a32f85..3a0ac68c 100644 --- a/buildSrc/src/BuildThemes.ts +++ b/buildSrc/src/BuildThemes.ts @@ -643,8 +643,9 @@ preBuild() ].filter(hiResWaifu => fs.existsSync(hiResWaifu))[0]; if (highResTheme) { const highResThemeDirectory = path.resolve(hiResGeneratedThemesDirectory, themeDirectoryName); - return walkDir(highResThemeDirectory) - .then(items => items.forEach(item => fs.unlinkSync(item))) + return (fs.existsSync(highResThemeDirectory) ? + walkDir(highResThemeDirectory) + .then(items => items.forEach(item => fs.unlinkSync(item))) : Promise.resolve()) .then(() => new Promise((resolve, reject) => { ncp(themeDirectory, highResThemeDirectory, { clobber: false, diff --git a/chromeThemes/Asuna's Theme/manifest.json b/chromeThemes/Asuna's Theme/manifest.json index 170b310a..ce0b6307 100644 --- a/chromeThemes/Asuna's Theme/manifest.json +++ b/chromeThemes/Asuna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/chromeThemes/Beatrice's Theme/manifest.json b/chromeThemes/Beatrice's Theme/manifest.json index e23aabb9..a8b85354 100644 --- a/chromeThemes/Beatrice's Theme/manifest.json +++ b/chromeThemes/Beatrice's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Beatrice", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Beatrice from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Darkness Dark's Theme/manifest.json b/chromeThemes/Darkness Dark's Theme/manifest.json index 388d0875..bf53dacd 100644 --- a/chromeThemes/Darkness Dark's Theme/manifest.json +++ b/chromeThemes/Darkness Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/chromeThemes/Darkness Light's Theme/manifest.json b/chromeThemes/Darkness Light's Theme/manifest.json index a3a8aa99..517c1661 100644 --- a/chromeThemes/Darkness Light's Theme/manifest.json +++ b/chromeThemes/Darkness Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/chromeThemes/Emilia Dark's Theme/manifest.json b/chromeThemes/Emilia Dark's Theme/manifest.json index 5c13e407..1df59d1b 100644 --- a/chromeThemes/Emilia Dark's Theme/manifest.json +++ b/chromeThemes/Emilia Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Emilia Light's Theme/manifest.json b/chromeThemes/Emilia Light's Theme/manifest.json index fa6b188d..be250f68 100644 --- a/chromeThemes/Emilia Light's Theme/manifest.json +++ b/chromeThemes/Emilia Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Hatsune Miku's Theme/manifest.json b/chromeThemes/Hatsune Miku's Theme/manifest.json index d0496df3..c78d5c6c 100644 --- a/chromeThemes/Hatsune Miku's Theme/manifest.json +++ b/chromeThemes/Hatsune Miku's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hatsune Miku", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Miku from Miscellaneous", "theme": { "images": { diff --git a/chromeThemes/Kanna's Theme/images/kanna_dark_secondary.png b/chromeThemes/Kanna's Theme/images/kanna_dark_secondary.png new file mode 100644 index 00000000..8c1527bb Binary files /dev/null and b/chromeThemes/Kanna's Theme/images/kanna_dark_secondary.png differ diff --git a/chromeThemes/Kanna's Theme/images/tab_highlight.png b/chromeThemes/Kanna's Theme/images/tab_highlight.png new file mode 100644 index 00000000..b61f90cb Binary files /dev/null and b/chromeThemes/Kanna's Theme/images/tab_highlight.png differ diff --git a/chromeThemes/Kanna's Theme/images/tab_inactive.png b/chromeThemes/Kanna's Theme/images/tab_inactive.png new file mode 100644 index 00000000..a341e9d8 Binary files /dev/null and b/chromeThemes/Kanna's Theme/images/tab_inactive.png differ diff --git a/chromeThemes/Kanna's Theme/manifest.json b/chromeThemes/Kanna's Theme/manifest.json new file mode 100644 index 00000000..ae14734f --- /dev/null +++ b/chromeThemes/Kanna's Theme/manifest.json @@ -0,0 +1,112 @@ +{ + "name": "Doki Theme: Kanna", + "version": "4.0.0", + "description": "A dark theme modeled after Kanna from Miss Kobayashi's Dragon Maid", + "theme": { + "images": { + "theme_ntp_background": "images/kanna_dark_secondary.png", + "theme_ntp_background_incognito": "images/kanna_dark_secondary.png", + "theme_toolbar": "images/tab_highlight.png", + "theme_tab_background": "images/tab_inactive.png" + }, + "colors": { + "bookmark_text": [ + 208, + 208, + 208 + ], + "button_background": [ + 38, + 39, + 50 + ], + "frame": [ + 27, + 21, + 41 + ], + "frame_inactive": [ + 26, + 20, + 38 + ], + "frame_incognito": [ + 26, + 20, + 38 + ], + "frame_incognito_inactive": [ + 27, + 21, + 41 + ], + "ntp_background": [ + 27, + 21, + 41 + ], + "ntp_header": [ + 26, + 20, + 38 + ], + "omnibox_background": [ + 21, + 15, + 32 + ], + "omnibox_text": [ + 106, + 173, + 255 + ], + "theme_toolbar": [ + 36, + 28, + 51 + ], + "ntp_text": [ + 208, + 208, + 208 + ], + "tab_background_text": [ + 208, + 208, + 208 + ], + "tab_background_text_inactive": [ + 106, + 102, + 121 + ], + "tab_text": [ + 208, + 208, + 208 + ], + "toolbar": [ + 26, + 20, + 38 + ] + }, + "tints": { + "buttons": [ + 0.6685393258426967, + 1, + 0.44509803921568625 + ], + "frame": [ + 0.6685393258426967, + 1, + 0.44509803921568625 + ] + }, + "properties": { + "ntp_background_alignment": "center", + "ntp_logo_alternate": 0 + } + }, + "manifest_version": 2 +} \ No newline at end of file diff --git a/chromeThemes/Konata's Theme/manifest.json b/chromeThemes/Konata's Theme/manifest.json index 5419c937..201a1779 100644 --- a/chromeThemes/Konata's Theme/manifest.json +++ b/chromeThemes/Konata's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Konata", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Konata from Lucky Star", "theme": { "images": { diff --git a/chromeThemes/Megumin's Theme/manifest.json b/chromeThemes/Megumin's Theme/manifest.json index 43dd7351..f044a12d 100644 --- a/chromeThemes/Megumin's Theme/manifest.json +++ b/chromeThemes/Megumin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Megumin", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Megumin from KonoSuba", "theme": { "images": { diff --git a/chromeThemes/Mioda Ibuki Dark's Theme/manifest.json b/chromeThemes/Mioda Ibuki Dark's Theme/manifest.json index 10a174a6..db86c2e5 100644 --- a/chromeThemes/Mioda Ibuki Dark's Theme/manifest.json +++ b/chromeThemes/Mioda Ibuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/chromeThemes/Mioda Ibuki Light's Theme/manifest.json b/chromeThemes/Mioda Ibuki Light's Theme/manifest.json index 4e803403..8de3fd5f 100644 --- a/chromeThemes/Mioda Ibuki Light's Theme/manifest.json +++ b/chromeThemes/Mioda Ibuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/chromeThemes/Misato Katsuragi's Theme/manifest.json b/chromeThemes/Misato Katsuragi's Theme/manifest.json index fe17a052..59627ba5 100644 --- a/chromeThemes/Misato Katsuragi's Theme/manifest.json +++ b/chromeThemes/Misato Katsuragi's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Misato Katsuragi", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Misato from Evangelion", "theme": { "images": { diff --git a/chromeThemes/Monika Dark's Theme/manifest.json b/chromeThemes/Monika Dark's Theme/manifest.json index 0fe5abb3..0f61f718 100644 --- a/chromeThemes/Monika Dark's Theme/manifest.json +++ b/chromeThemes/Monika Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Monika Light's Theme/manifest.json b/chromeThemes/Monika Light's Theme/manifest.json index da81d736..d68858f9 100644 --- a/chromeThemes/Monika Light's Theme/manifest.json +++ b/chromeThemes/Monika Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Natsuki Dark's Theme/manifest.json b/chromeThemes/Natsuki Dark's Theme/manifest.json index 535aaa39..802aa722 100644 --- a/chromeThemes/Natsuki Dark's Theme/manifest.json +++ b/chromeThemes/Natsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Natsuki Light's Theme/manifest.json b/chromeThemes/Natsuki Light's Theme/manifest.json index b73fba14..3e50c1c7 100644 --- a/chromeThemes/Natsuki Light's Theme/manifest.json +++ b/chromeThemes/Natsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Ram's Theme/manifest.json b/chromeThemes/Ram's Theme/manifest.json index baed2feb..c05e55a4 100644 --- a/chromeThemes/Ram's Theme/manifest.json +++ b/chromeThemes/Ram's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ram", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ram from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Rem's Theme/manifest.json b/chromeThemes/Rem's Theme/manifest.json index e6bc6b5d..bcb8a89f 100644 --- a/chromeThemes/Rem's Theme/manifest.json +++ b/chromeThemes/Rem's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rem", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Rem from Re Zero", "theme": { "images": { diff --git a/chromeThemes/Rias's Theme/manifest.json b/chromeThemes/Rias's Theme/manifest.json index a7a1575e..a442462f 100644 --- a/chromeThemes/Rias's Theme/manifest.json +++ b/chromeThemes/Rias's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/chromeThemes/Ryuko's Theme/manifest.json b/chromeThemes/Ryuko's Theme/manifest.json index f63edf53..9e88c197 100644 --- a/chromeThemes/Ryuko's Theme/manifest.json +++ b/chromeThemes/Ryuko's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes/Satsuki's Theme/manifest.json b/chromeThemes/Satsuki's Theme/manifest.json index 26bc3cd4..8a33a08a 100644 --- a/chromeThemes/Satsuki's Theme/manifest.json +++ b/chromeThemes/Satsuki's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes/Sayori Dark's Theme/manifest.json b/chromeThemes/Sayori Dark's Theme/manifest.json index 321b2bc2..57de56c8 100644 --- a/chromeThemes/Sayori Dark's Theme/manifest.json +++ b/chromeThemes/Sayori Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sayori Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Š̸̘͚̼͎̯̙̣̱̎̋̐͒a̴̖̟̠̳̤͙̟͂̂͑̐͜ỷ̵̧̨̞̠̖̠o̴̧͍̗̬̎̓͆̔͝ͅr̴̡̮̟͈͠ͅi̴̡̨͓͈̬̗̺̍́̃̇̓ from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Sayori Light's Theme/manifest.json b/chromeThemes/Sayori Light's Theme/manifest.json index 192af87b..2c00169e 100644 --- a/chromeThemes/Sayori Light's Theme/manifest.json +++ b/chromeThemes/Sayori Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sayori Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Sayori from Literature Club", "theme": { "images": { @@ -109,4 +109,4 @@ } }, "manifest_version": 2 -} \ No newline at end of file +} diff --git a/chromeThemes/Yuri Dark's Theme/manifest.json b/chromeThemes/Yuri Dark's Theme/manifest.json index 4d31b73a..f8c51e79 100644 --- a/chromeThemes/Yuri Dark's Theme/manifest.json +++ b/chromeThemes/Yuri Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yuri Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Yuri from Literature Club", "theme": { "images": { diff --git a/chromeThemes/Yuri Light's Theme/manifest.json b/chromeThemes/Yuri Light's Theme/manifest.json index 33357a33..a4b26cd7 100644 --- a/chromeThemes/Yuri Light's Theme/manifest.json +++ b/chromeThemes/Yuri Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yuri Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Yuri from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Asuna's Theme/manifest.json b/chromeThemes_2560x1440/Asuna's Theme/manifest.json index 170b310a..ce0b6307 100644 --- a/chromeThemes_2560x1440/Asuna's Theme/manifest.json +++ b/chromeThemes_2560x1440/Asuna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Darkness Dark's Theme/manifest.json b/chromeThemes_2560x1440/Darkness Dark's Theme/manifest.json index 388d0875..bf53dacd 100644 --- a/chromeThemes_2560x1440/Darkness Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Darkness Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Darkness Light's Theme/manifest.json b/chromeThemes_2560x1440/Darkness Light's Theme/manifest.json index a3a8aa99..517c1661 100644 --- a/chromeThemes_2560x1440/Darkness Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Darkness Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Emilia Dark's Theme/manifest.json b/chromeThemes_2560x1440/Emilia Dark's Theme/manifest.json index 5c13e407..1df59d1b 100644 --- a/chromeThemes_2560x1440/Emilia Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Emilia Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Kanna's Theme/images/kanna_dark_secondary.png b/chromeThemes_2560x1440/Kanna's Theme/images/kanna_dark_secondary.png new file mode 100644 index 00000000..a3b3c555 Binary files /dev/null and b/chromeThemes_2560x1440/Kanna's Theme/images/kanna_dark_secondary.png differ diff --git a/chromeThemes_2560x1440/Kanna's Theme/images/tab_highlight.png b/chromeThemes_2560x1440/Kanna's Theme/images/tab_highlight.png new file mode 100644 index 00000000..b61f90cb Binary files /dev/null and b/chromeThemes_2560x1440/Kanna's Theme/images/tab_highlight.png differ diff --git a/chromeThemes_2560x1440/Kanna's Theme/images/tab_inactive.png b/chromeThemes_2560x1440/Kanna's Theme/images/tab_inactive.png new file mode 100644 index 00000000..a341e9d8 Binary files /dev/null and b/chromeThemes_2560x1440/Kanna's Theme/images/tab_inactive.png differ diff --git a/chromeThemes_2560x1440/Kanna's Theme/manifest.json b/chromeThemes_2560x1440/Kanna's Theme/manifest.json new file mode 100644 index 00000000..ae14734f --- /dev/null +++ b/chromeThemes_2560x1440/Kanna's Theme/manifest.json @@ -0,0 +1,112 @@ +{ + "name": "Doki Theme: Kanna", + "version": "4.0.0", + "description": "A dark theme modeled after Kanna from Miss Kobayashi's Dragon Maid", + "theme": { + "images": { + "theme_ntp_background": "images/kanna_dark_secondary.png", + "theme_ntp_background_incognito": "images/kanna_dark_secondary.png", + "theme_toolbar": "images/tab_highlight.png", + "theme_tab_background": "images/tab_inactive.png" + }, + "colors": { + "bookmark_text": [ + 208, + 208, + 208 + ], + "button_background": [ + 38, + 39, + 50 + ], + "frame": [ + 27, + 21, + 41 + ], + "frame_inactive": [ + 26, + 20, + 38 + ], + "frame_incognito": [ + 26, + 20, + 38 + ], + "frame_incognito_inactive": [ + 27, + 21, + 41 + ], + "ntp_background": [ + 27, + 21, + 41 + ], + "ntp_header": [ + 26, + 20, + 38 + ], + "omnibox_background": [ + 21, + 15, + 32 + ], + "omnibox_text": [ + 106, + 173, + 255 + ], + "theme_toolbar": [ + 36, + 28, + 51 + ], + "ntp_text": [ + 208, + 208, + 208 + ], + "tab_background_text": [ + 208, + 208, + 208 + ], + "tab_background_text_inactive": [ + 106, + 102, + 121 + ], + "tab_text": [ + 208, + 208, + 208 + ], + "toolbar": [ + 26, + 20, + 38 + ] + }, + "tints": { + "buttons": [ + 0.6685393258426967, + 1, + 0.44509803921568625 + ], + "frame": [ + 0.6685393258426967, + 1, + 0.44509803921568625 + ] + }, + "properties": { + "ntp_background_alignment": "center", + "ntp_logo_alternate": 0 + } + }, + "manifest_version": 2 +} \ No newline at end of file diff --git a/chromeThemes_2560x1440/Konata's Theme/manifest.json b/chromeThemes_2560x1440/Konata's Theme/manifest.json index 5419c937..201a1779 100644 --- a/chromeThemes_2560x1440/Konata's Theme/manifest.json +++ b/chromeThemes_2560x1440/Konata's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Konata", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Konata from Lucky Star", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Megumin's Theme/manifest.json b/chromeThemes_2560x1440/Megumin's Theme/manifest.json index 43dd7351..f044a12d 100644 --- a/chromeThemes_2560x1440/Megumin's Theme/manifest.json +++ b/chromeThemes_2560x1440/Megumin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Megumin", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Megumin from KonoSuba", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Mioda Ibuki Dark's Theme/manifest.json b/chromeThemes_2560x1440/Mioda Ibuki Dark's Theme/manifest.json index 10a174a6..db86c2e5 100644 --- a/chromeThemes_2560x1440/Mioda Ibuki Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Mioda Ibuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Mioda Ibuki Light's Theme/manifest.json b/chromeThemes_2560x1440/Mioda Ibuki Light's Theme/manifest.json index 4e803403..8de3fd5f 100644 --- a/chromeThemes_2560x1440/Mioda Ibuki Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Mioda Ibuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Misato Katsuragi's Theme/manifest.json b/chromeThemes_2560x1440/Misato Katsuragi's Theme/manifest.json index fe17a052..59627ba5 100644 --- a/chromeThemes_2560x1440/Misato Katsuragi's Theme/manifest.json +++ b/chromeThemes_2560x1440/Misato Katsuragi's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Misato Katsuragi", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Misato from Evangelion", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Monika Dark's Theme/manifest.json b/chromeThemes_2560x1440/Monika Dark's Theme/manifest.json index 0fe5abb3..0f61f718 100644 --- a/chromeThemes_2560x1440/Monika Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Monika Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Monika Light's Theme/manifest.json b/chromeThemes_2560x1440/Monika Light's Theme/manifest.json index da81d736..d68858f9 100644 --- a/chromeThemes_2560x1440/Monika Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Monika Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Natsuki Dark's Theme/manifest.json b/chromeThemes_2560x1440/Natsuki Dark's Theme/manifest.json index 535aaa39..802aa722 100644 --- a/chromeThemes_2560x1440/Natsuki Dark's Theme/manifest.json +++ b/chromeThemes_2560x1440/Natsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Natsuki Light's Theme/manifest.json b/chromeThemes_2560x1440/Natsuki Light's Theme/manifest.json index b73fba14..3e50c1c7 100644 --- a/chromeThemes_2560x1440/Natsuki Light's Theme/manifest.json +++ b/chromeThemes_2560x1440/Natsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Ram's Theme/manifest.json b/chromeThemes_2560x1440/Ram's Theme/manifest.json index baed2feb..c05e55a4 100644 --- a/chromeThemes_2560x1440/Ram's Theme/manifest.json +++ b/chromeThemes_2560x1440/Ram's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ram", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ram from Re Zero", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Rem's Theme/manifest.json b/chromeThemes_2560x1440/Rem's Theme/manifest.json index e6bc6b5d..bcb8a89f 100644 --- a/chromeThemes_2560x1440/Rem's Theme/manifest.json +++ b/chromeThemes_2560x1440/Rem's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rem", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Rem from Re Zero", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Rias's Theme/manifest.json b/chromeThemes_2560x1440/Rias's Theme/manifest.json index a7a1575e..a442462f 100644 --- a/chromeThemes_2560x1440/Rias's Theme/manifest.json +++ b/chromeThemes_2560x1440/Rias's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Ryuko's Theme/manifest.json b/chromeThemes_2560x1440/Ryuko's Theme/manifest.json index f63edf53..9e88c197 100644 --- a/chromeThemes_2560x1440/Ryuko's Theme/manifest.json +++ b/chromeThemes_2560x1440/Ryuko's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/chromeThemes_2560x1440/Satsuki's Theme/manifest.json b/chromeThemes_2560x1440/Satsuki's Theme/manifest.json index 26bc3cd4..8a33a08a 100644 --- a/chromeThemes_2560x1440/Satsuki's Theme/manifest.json +++ b/chromeThemes_2560x1440/Satsuki's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/edgeThemes/Asuna's Theme/manifest.json b/edgeThemes/Asuna's Theme/manifest.json index f891d04d..8adb45ad 100644 --- a/edgeThemes/Asuna's Theme/manifest.json +++ b/edgeThemes/Asuna's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Asuna", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Asuna from Sword Art Online", "theme": { "images": { diff --git a/edgeThemes/Beatrice's Theme/manifest.json b/edgeThemes/Beatrice's Theme/manifest.json index e46fc5bf..49c6c2e5 100644 --- a/edgeThemes/Beatrice's Theme/manifest.json +++ b/edgeThemes/Beatrice's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Beatrice", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Beatrice from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Darkness Dark's Theme/manifest.json b/edgeThemes/Darkness Dark's Theme/manifest.json index 448bc109..1e4f77e5 100644 --- a/edgeThemes/Darkness Dark's Theme/manifest.json +++ b/edgeThemes/Darkness Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/edgeThemes/Darkness Light's Theme/manifest.json b/edgeThemes/Darkness Light's Theme/manifest.json index 648d2988..5fc29bdd 100644 --- a/edgeThemes/Darkness Light's Theme/manifest.json +++ b/edgeThemes/Darkness Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Darkness Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Darkness from KonoSuba", "theme": { "images": { diff --git a/edgeThemes/Emilia Dark's Theme/manifest.json b/edgeThemes/Emilia Dark's Theme/manifest.json index 5d06d252..1f9ca59b 100644 --- a/edgeThemes/Emilia Dark's Theme/manifest.json +++ b/edgeThemes/Emilia Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Emilia Light's Theme/manifest.json b/edgeThemes/Emilia Light's Theme/manifest.json index 6f3a9935..47eac659 100644 --- a/edgeThemes/Emilia Light's Theme/manifest.json +++ b/edgeThemes/Emilia Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Emilia Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Emilia from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Hatsune Miku's Theme/manifest.json b/edgeThemes/Hatsune Miku's Theme/manifest.json index 93b93e78..c9eb0931 100644 --- a/edgeThemes/Hatsune Miku's Theme/manifest.json +++ b/edgeThemes/Hatsune Miku's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Hatsune Miku", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Miku from Miscellaneous", "theme": { "images": { diff --git a/edgeThemes/Kanna's Theme/images/tab_highlight.png b/edgeThemes/Kanna's Theme/images/tab_highlight.png new file mode 100644 index 00000000..ed51ce32 Binary files /dev/null and b/edgeThemes/Kanna's Theme/images/tab_highlight.png differ diff --git a/edgeThemes/Kanna's Theme/images/tab_inactive.png b/edgeThemes/Kanna's Theme/images/tab_inactive.png new file mode 100644 index 00000000..a341e9d8 Binary files /dev/null and b/edgeThemes/Kanna's Theme/images/tab_inactive.png differ diff --git a/edgeThemes/Kanna's Theme/manifest.json b/edgeThemes/Kanna's Theme/manifest.json new file mode 100644 index 00000000..dadaca2b --- /dev/null +++ b/edgeThemes/Kanna's Theme/manifest.json @@ -0,0 +1,110 @@ +{ + "name": "Doki Theme: Kanna", + "version": "4.0.0", + "description": "A dark theme modeled after Kanna from Miss Kobayashi's Dragon Maid", + "theme": { + "images": { + "theme_toolbar": "images/tab_highlight.png", + "theme_tab_background": "images/tab_inactive.png" + }, + "colors": { + "bookmark_text": [ + 208, + 208, + 208 + ], + "button_background": [ + 38, + 39, + 50 + ], + "frame": [ + 27, + 21, + 41 + ], + "frame_inactive": [ + 26, + 20, + 38 + ], + "frame_incognito": [ + 26, + 20, + 38 + ], + "frame_incognito_inactive": [ + 27, + 21, + 41 + ], + "ntp_background": [ + 27, + 21, + 41 + ], + "ntp_header": [ + 26, + 20, + 38 + ], + "omnibox_background": [ + 21, + 15, + 32 + ], + "omnibox_text": [ + 106, + 173, + 255 + ], + "theme_toolbar": [ + 36, + 28, + 51 + ], + "ntp_text": [ + 208, + 208, + 208 + ], + "tab_background_text": [ + 208, + 208, + 208 + ], + "tab_background_text_inactive": [ + 106, + 102, + 121 + ], + "tab_text": [ + 208, + 208, + 208 + ], + "toolbar": [ + 26, + 20, + 38 + ] + }, + "tints": { + "buttons": [ + 0.6685393258426967, + 1, + 0.44509803921568625 + ], + "frame": [ + 0.6685393258426967, + 1, + 0.44509803921568625 + ] + }, + "properties": { + "ntp_background_alignment": "center", + "ntp_logo_alternate": 0 + } + }, + "manifest_version": 2 +} \ No newline at end of file diff --git a/edgeThemes/Konata's Theme/manifest.json b/edgeThemes/Konata's Theme/manifest.json index bb6bca48..9b29f7e5 100644 --- a/edgeThemes/Konata's Theme/manifest.json +++ b/edgeThemes/Konata's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Konata", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Konata from Lucky Star", "theme": { "images": { diff --git a/edgeThemes/Megumin's Theme/manifest.json b/edgeThemes/Megumin's Theme/manifest.json index faf4446e..36213e73 100644 --- a/edgeThemes/Megumin's Theme/manifest.json +++ b/edgeThemes/Megumin's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Megumin", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Megumin from KonoSuba", "theme": { "images": { diff --git a/edgeThemes/Mioda Ibuki Dark's Theme/manifest.json b/edgeThemes/Mioda Ibuki Dark's Theme/manifest.json index 55a80c1e..6a7a0867 100644 --- a/edgeThemes/Mioda Ibuki Dark's Theme/manifest.json +++ b/edgeThemes/Mioda Ibuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/edgeThemes/Mioda Ibuki Light's Theme/manifest.json b/edgeThemes/Mioda Ibuki Light's Theme/manifest.json index 7de59f3e..f1f66d07 100644 --- a/edgeThemes/Mioda Ibuki Light's Theme/manifest.json +++ b/edgeThemes/Mioda Ibuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Mioda Ibuki Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Ibuki from DanganRonpa", "theme": { "images": { diff --git a/edgeThemes/Misato Katsuragi's Theme/manifest.json b/edgeThemes/Misato Katsuragi's Theme/manifest.json index 16e3b174..9019bc37 100644 --- a/edgeThemes/Misato Katsuragi's Theme/manifest.json +++ b/edgeThemes/Misato Katsuragi's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Misato Katsuragi", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Misato from Evangelion", "theme": { "images": { diff --git a/edgeThemes/Monika Dark's Theme/manifest.json b/edgeThemes/Monika Dark's Theme/manifest.json index 0daa1505..b7a2e86d 100644 --- a/edgeThemes/Monika Dark's Theme/manifest.json +++ b/edgeThemes/Monika Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Monika Light's Theme/manifest.json b/edgeThemes/Monika Light's Theme/manifest.json index 81d11bce..a5b36a17 100644 --- a/edgeThemes/Monika Light's Theme/manifest.json +++ b/edgeThemes/Monika Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Monika Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Monika from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Natsuki Dark's Theme/manifest.json b/edgeThemes/Natsuki Dark's Theme/manifest.json index 6bff6ad1..6ef585b9 100644 --- a/edgeThemes/Natsuki Dark's Theme/manifest.json +++ b/edgeThemes/Natsuki Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Natsuki Light's Theme/manifest.json b/edgeThemes/Natsuki Light's Theme/manifest.json index cb0f43d3..a145fe27 100644 --- a/edgeThemes/Natsuki Light's Theme/manifest.json +++ b/edgeThemes/Natsuki Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Natsuki Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Natsuki from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Ram's Theme/manifest.json b/edgeThemes/Ram's Theme/manifest.json index 654009ee..a51da954 100644 --- a/edgeThemes/Ram's Theme/manifest.json +++ b/edgeThemes/Ram's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ram", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ram from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Rem's Theme/manifest.json b/edgeThemes/Rem's Theme/manifest.json index 38c3c04c..e8fe839f 100644 --- a/edgeThemes/Rem's Theme/manifest.json +++ b/edgeThemes/Rem's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rem", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Rem from Re Zero", "theme": { "images": { diff --git a/edgeThemes/Rias's Theme/manifest.json b/edgeThemes/Rias's Theme/manifest.json index 14a238b6..cab357ea 100644 --- a/edgeThemes/Rias's Theme/manifest.json +++ b/edgeThemes/Rias's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Rias", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Rias from High School DxD", "theme": { "images": { diff --git a/edgeThemes/Ryuko's Theme/manifest.json b/edgeThemes/Ryuko's Theme/manifest.json index 3ac1bbb6..ed45aac8 100644 --- a/edgeThemes/Ryuko's Theme/manifest.json +++ b/edgeThemes/Ryuko's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Ryuko", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Ryuko from Kill la Kill", "theme": { "images": { diff --git a/edgeThemes/Satsuki's Theme/manifest.json b/edgeThemes/Satsuki's Theme/manifest.json index 2b708660..a93e441b 100644 --- a/edgeThemes/Satsuki's Theme/manifest.json +++ b/edgeThemes/Satsuki's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Satsuki", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Satsuki from Kill la Kill", "theme": { "images": { diff --git a/edgeThemes/Sayori Dark's Theme/manifest.json b/edgeThemes/Sayori Dark's Theme/manifest.json index 27e18dba..bd8b67bd 100644 --- a/edgeThemes/Sayori Dark's Theme/manifest.json +++ b/edgeThemes/Sayori Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sayori Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Š̸̘͚̼͎̯̙̣̱̎̋̐͒a̴̖̟̠̳̤͙̟͂̂͑̐͜ỷ̵̧̨̞̠̖̠o̴̧͍̗̬̎̓͆̔͝ͅr̴̡̮̟͈͠ͅi̴̡̨͓͈̬̗̺̍́̃̇̓ from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Sayori Light's Theme/manifest.json b/edgeThemes/Sayori Light's Theme/manifest.json index 683fd7a7..633a1bb1 100644 --- a/edgeThemes/Sayori Light's Theme/manifest.json +++ b/edgeThemes/Sayori Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Sayori Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Sayori from Literature Club", "theme": { "images": { @@ -107,4 +107,4 @@ } }, "manifest_version": 2 -} \ No newline at end of file +} diff --git a/edgeThemes/Yuri Dark's Theme/manifest.json b/edgeThemes/Yuri Dark's Theme/manifest.json index 548ac1ef..8206cfce 100644 --- a/edgeThemes/Yuri Dark's Theme/manifest.json +++ b/edgeThemes/Yuri Dark's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yuri Dark", - "version": "3.0.0", + "version": "4.0.0", "description": "A dark theme modeled after Yuri from Literature Club", "theme": { "images": { diff --git a/edgeThemes/Yuri Light's Theme/manifest.json b/edgeThemes/Yuri Light's Theme/manifest.json index 0fd98100..bda7090b 100644 --- a/edgeThemes/Yuri Light's Theme/manifest.json +++ b/edgeThemes/Yuri Light's Theme/manifest.json @@ -1,6 +1,6 @@ { "name": "Doki Theme: Yuri Light", - "version": "3.0.0", + "version": "4.0.0", "description": "A light theme modeled after Yuri from Literature Club", "theme": { "images": { diff --git a/masterExtension/package.json b/masterExtension/package.json index e6c6c588..e1cea364 100644 --- a/masterExtension/package.json +++ b/masterExtension/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-chrome", - "version": "3.0.0", + "version": "4.0.0", "description": "Anime based themes for your chrome browser!", "main": "index.js", "repository": "git@github.com:doki-theme/doki-theme-chrome.git", diff --git a/masterExtension/public/manifest.json b/masterExtension/public/manifest.json index 5c983cee..f6296141 100644 --- a/masterExtension/public/manifest.json +++ b/masterExtension/public/manifest.json @@ -1,6 +1,6 @@ { "name": "The Doki Theme", - "version": "3.0.0", + "version": "4.0.0", "description": "Supports consistency for the the anime based themes.", "permissions": [ "activeTab", diff --git a/package.json b/package.json index 0b5a786f..93a1e365 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "doki-theme-chrome", - "version": "3.0.0", + "version": "4.0.0", "description": "Browse the web with your waifu", "main": "index.js", "repository": "git@github.com:doki-theme/doki-theme-chrome.git",