Hacked News
A simple, clean Hacker News theme.
Hacked News क्या है?
Hacked News Bala Clark द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple, clean Hacker News theme."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hacked News एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |