Hacker News UX
Hacker News User Experience Enhancement
Hacker News UX क्या है?
Hacker News UX https://carina.app/hnux द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hacker News User Experience Enhancement"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hacker News UX एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Hacker News UX v2, enhances your experience with Hacker News. Check out the demo video, and screenshots to get a glimpse of the features! User Preferences (font-size, column, dark/classic switch) is available by hovering your username, or login, link in the bottom-left corner. 1. Auto-Load, and Columns Browse lists with auto-load, and columns, enhancing surfacing of interesting content. 2. Dynamic Reply Reply to comments in-place, and without page-refresh. 3. Explore, with Profile Pop-Up, and Columns Explore content with profile tooltips, and by opening threads, and profiles into columns, and without managing tabs, or losing progress. 4. Secure, and Private 5. History Hacker News UX v1, was featured on Mashable. http://mashable.com/2010/12/01/improve-hacker-news-ui/
एक्सटेंशन की मूल जानकारी
नाम | Hacker News UX |
ID | chngbdmhgakoomomnnhfapkpbalpmhid |
आधिकारिक URL | https://chromewebstore.google.com/detail/hacker-news-ux/chngbdmhgakoomomnnhfapkpbalpmhid |
विवरण | Hacker News User Experience Enhancement |
फ़ाइल का आकार | 87.62 KB |
स्थापना संख्या | 764 |
वर्तमान संस्करण | 2.0.3 |
अंतिम अपडेट | 2023-08-25 |
प्रकाशन तिथि | 2018-04-09 |
रेटिंग | 4.08/5 कुल 24 रेटिंग्स |
डेवलपर | https://carina.app/hnux |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.0.3", "name": "Hacker News UX", "description": "Hacker News User Experience Enhancement", "web_accessible_resources": [ { "resources": [ "images\/ajax-loader-classic.gif", "images\/ajax-loader-dark.gif", "images\/ajax-loader-classic-01.gif", "images\/ajax-loader-classic-02.gif", "images\/votearrow.png", "images\/yc.png", ".\/dist\/ux.html" ], "matches": [ "https:\/\/news.ycombinator.com\/*", "http:\/\/news.ycombinator.net\/*", "http:\/\/news.ycombinator.org\/*", "http:\/\/news.ycombinator.com\/*" ] } ], "background": { "service_worker": ".\/dist\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*", "http:\/\/news.ycombinator.net\/*", "http:\/\/news.ycombinator.org\/*", "http:\/\/news.ycombinator.com\/*" ], "css": [ ".\/dist\/style.css" ], "js": [ ".\/dist\/build.js" ], "run_at": "document_end" } ], "host_permissions": [ "https:\/\/news.ycombinator.com\/*", "http:\/\/news.ycombinator.net\/*", "http:\/\/news.ycombinator.org\/*", "http:\/\/news.ycombinator.com\/*" ], "permissions": [ "unlimitedStorage" ] } |