HN Dark Mode
Adds a dark theme for Hacker news (news.ycombinator.com).
ما هو HN Dark Mode؟
HN Dark Mode هو إضافة Chrome تم تطويرها بواسطة Innovative Computer Software، والميزة الرئيسية لها هي "Adds a dark theme for Hacker news (news.ycombinator.com).".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HN Dark Mode
قم بتنزيل ملفات الامتداد HN Dark Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Dark Mode can be configured to be always on or to match the operating system's dark/light theme.
This extension only runs on the Hacker News site. It will not collect or transmit ANY of your browsing activity. معلومات أساسية عن التمديد
| الاسم | |
| ID | abpjflhoidbeaacggmdjoahiakcledna |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna |
| الوصف | Adds a dark theme for Hacker news (news.ycombinator.com). |
| حجم الملف | 169 KB |
| عدد التثبيتات | 56 |
| النسخة الحالية | 1.0.3 |
| آخر تحديث | 2022-04-07 |
| تاريخ النشر | 2022-03-04 |
| المطور | Innovative Computer Software |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://icsusa.com/public/hndarkmode.html |
| عنوان صفحة المساعدة | https://icsusa.com/public/hndarkmode.html |
| عنوان صفحة سياسة الخصوصية | https://www.icsusa.com/public/absoluteprivacy.html |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "1.0.3",
"icons": {
"48": "images\/HackerNewsColor-48.png",
"96": "images\/HackerNewsColor-96.png",
"128": "images\/HackerNewsColor-128.png",
"256": "images\/HackerNewsColor-256.png",
"512": "images\/HackerNewsColor-512.png"
},
"background": {
"service_worker": "background.js",
"_scripts": [
"background.js"
],
"_persistent": false
},
"content_scripts": [
{
"js": [
"content.js"
],
"css": [
"style.css"
],
"matches": [
"*:\/\/news.ycombinator.com\/*"
]
}
],
"action": {
"default_popup": "popup.html"
},
"permissions": [
"storage"
]
} | |