Google Docs Dark Mode (Darker)
Google docs for someone who can't stand the light.
ما هو Google Docs Dark Mode (Darker)؟
Google Docs Dark Mode (Darker) هو إضافة Chrome تم تطويرها بواسطة PrefersDarkMode، والميزة الرئيسية لها هي "Google docs for someone who can't stand the light.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Docs Dark Mode (Darker)
قم بتنزيل ملفات الامتداد Google Docs Dark Mode (Darker) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Simply applies a overtly dark theme to google docs. Perfect for those who prefer a pitch black dark mode in google docs. Absolutely ZERO user data is collected. Source code: https://github.com/R-Y-M-R/DocsDarkMode
معلومات أساسية عن التمديد
الاسم | Google Docs Dark Mode (Darker) |
ID | eeckpnpnbjmpknpcmcoiceaidlajhpmh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-docs-dark-mode-dar/eeckpnpnbjmpknpcmcoiceaidlajhpmh |
الوصف | Google docs for someone who can't stand the light. |
حجم الملف | 39.38 KB |
عدد التثبيتات | 361 |
النسخة الحالية | 1 |
آخر تحديث | 2022-09-07 |
تاريخ النشر | 2022-09-04 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | PrefersDarkMode |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Docs Dark Mode (Darker)", "version": "1", "description": "Google docs for someone who can't stand the light.", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "128.png" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "css\/dark_mode_docs.css" ], "matches": [ "https:\/\/docs.google.com\/*" ] } ] } |