Hacked News
A simple, clean Hacker News theme.
ما هو Hacked News؟
Hacked News هو إضافة Chrome تم تطويرها بواسطة Bala Clark، والميزة الرئيسية لها هي "A simple, clean Hacker News theme.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Hacked News
قم بتنزيل ملفات الامتداد Hacked News بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Provides a clean and readable Hacker News experience as well as some other optional HN enhancements. Included Enhancements: * View text only versions of articles (via ViewText.org) * Open articles in a new window * Article toolbar with HN meta data and voting functionality This extension is open source and source code is available on github: https://github.com/balaclark/hacked-news
معلومات أساسية عن التمديد
الاسم | |
ID | klijiafmajbhbkhjbfajmdbogjlcibeb |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/hacked-news/klijiafmajbhbkhjbfajmdbogjlcibeb |
الوصف | A simple, clean Hacker News theme. |
حجم الملف | 37.65 KB |
عدد التثبيتات | 18 |
النسخة الحالية | 0.1.2 |
آخر تحديث | 2013-08-11 |
تاريخ النشر | 2013-08-11 |
تقييم | 4.00/5 مجموع تقييمات 4 |
المطور | Bala Clark |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hacked News", "version": "0.1.2", "description": "A simple, clean Hacker News theme.", "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "events.js" ], "persistent": false }, "options_page": "options.html", "offline_enabled": true, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/news.ycombinator.com\/*", "http:\/\/www.hnsearch.com\/*", "https:\/\/news.ycombinator.com\/*", "https:\/\/www.hnsearch.com\/*" ], "css": [ "hn.css" ], "js": [ "hn.js" ] } ] } |