Google Docs In Dark
Says what it does or does what it says.
ما هو Google Docs In Dark؟
Google Docs In Dark هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Says what it does or does what it says.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Docs In Dark
قم بتنزيل ملفات الامتداد Google Docs In Dark بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
It's just inverting page colors and it surprisingly looks awesome in google docs.
معلومات أساسية عن التمديد
الاسم | Google Docs In Dark |
ID | fipdcenemkbohhdgadjflhpfneohchmj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-docs-in-dark/fipdcenemkbohhdgadjflhpfneohchmj |
الوصف | Says what it does or does what it says. |
حجم الملف | 8.37 KB |
عدد التثبيتات | 14,398 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2020-04-17 |
تاريخ النشر | 2020-04-17 |
تقييم | 4.80/5 مجموع تقييمات 70 |
المطور | Unknown |
نوع الدفع | free |
موقع الإضافة | https://github.com/Coderantine/GoogleDocsInDark |
عنوان صفحة المساعدة | https://github.com/Coderantine/GoogleDocsInDark/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Docs In Dark", "version": "1.0.0", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "Says what it does or does what it says.", "homepage_url": "https:\/\/github.com\/Coderantine\/GoogleDocsInDark", "short_name": "DocsInDark", "permissions": [ "storage", "declarativeContent", "*:\/\/docs.google.com\/*" ], "author": "arkoc", "minimum_chrome_version": "49", "page_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "default_title": "Docs in Dark" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/*" ], "js": [ "js\/contentScript.js" ] } ] } |