Google Chat Themes
Change google chat theme to dark mode, slack mode or make your own
Google Chat Themesคืออะไร?
Google Chat Themes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย upman16 และคุณลักษณะหลักของมันคือ "Change google chat theme to dark mode, slack mode or make your own"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Chat Themes
ดาวน์โหลดไฟล์ส่วนขยาย Google Chat Themes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Chat Themes |
ID | olnlihilabjhneiedkofjdenhboogmeg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-chat-themes/olnlihilabjhneiedkofjdenhboogmeg |
คำอธิบาย | Change google chat theme to dark mode, slack mode or make your own |
ขนาดไฟล์ | 280 KB |
จำนวนการติดตั้ง | 9,822 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2021-05-31 |
วันที่เผยแพร่ | 2020-08-02 |
คะแนน | 2.62/5 รวมทั้งหมด 63 คะแนน |
ผู้พัฒนา | upman16 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/upman/gchat-themes |
URL หน้าช่วยเหลือ | https://github.com/upman/gchat-themes/issues |
ภาษาที่รองรับ | 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" ] } |