Google Chat Themes
Change google chat theme to dark mode, slack mode or make your own
Hvad er Google Chat Themes?
Google Chat Themes er en Chrome-udvidelse udviklet af upman16, og dens hovedfunktion er "Change google chat theme to dark mode, slack mode or make your own".
Udvidelsesskærmbilleder
Download Google Chat Themes-udvidelses-CRX-fil
Download Google Chat Themes-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Add dark mode, slack mode and customize fonts on google chat. Also completely customize and create your own theme instantly. Help keep the extension up and maintained. Buy me a coffee: https://www.paypal.com/donate?hosted_button_id=BL4NDDVH8AGUY
Grundlæggende oplysninger om udvidelsen
Navn | Google Chat Themes |
ID | olnlihilabjhneiedkofjdenhboogmeg |
Officiel URL | https://chromewebstore.google.com/detail/google-chat-themes/olnlihilabjhneiedkofjdenhboogmeg |
Beskrivelse | Change google chat theme to dark mode, slack mode or make your own |
Filstørrelse | 280 KB |
Antal Installationer | 9,822 |
Nuværende Version | 0.0.2 |
Senest Opdateret | 2021-05-31 |
Udgivelsesdato | 2020-08-02 |
Bedømmelse | 2.62/5 Samlet 63 Bedømmelser |
Udvikler | upman16 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/upman/gchat-themes |
Hjælpeside-URL | https://github.com/upman/gchat-themes/issues |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Chat Themes", "description": "Change google chat theme to dark mode, slack mode or make your own", "version": "0.0.2", "content_scripts": [ { "matches": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/chat\/*" ], "all_frames": true, "js": [ ".\/src\/content.js" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "16": "images\/heart.png", "24": "images\/heart.png", "32": "images\/heart.png" }, "default_title": "Google Chat Theme Customizer", "default_popup": "src\/popup\/popup.html" }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "storage" ] } |