Hacker News Tweak
Hacker News Tweak is a chrome extension to make HN more user friendly. The extension will activate when you're on hacker news once…
Qu'est-ce que Hacker News Tweak ?
Hacker News Tweak est une extension Chrome développée par lishi1608, et sa fonction principale est "Hacker News Tweak is a chrome extension to make HN more user friendly. The extension will activate when you're on hacker news once…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hacker News Tweak
Téléchargez les fichiers d'extension Hacker News Tweak au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Hacker News Tweak is a chrome extension to make HN more user friendly. The extension will activate when you're on hacker news once installed. Unlike some other apps, you don't need to goto any page, so your bookmark won't increase. Features: -recover the 'best' link -Make news title bigger. Highlight points count and comments count if very many. -Add share function by AddThis. This will simplify sharing Hacker News to Facebook, Twitter, Google Plus, weibo etc. Now be a social hacker. -Add sort by heat function. This will make you quickly find the hottest(max pointed/commented) news in a single Hacker News page by one click. Enjoy!
Informations de Base sur l'Extension
Nom | Hacker News Tweak |
ID | egohkpmjomkefbidmbkjiefkihenmkck |
URL Officiel | https://chromewebstore.google.com/detail/hacker-news-tweak/egohkpmjomkefbidmbkjiefkihenmkck |
Description | Hacker News Tweak is a chrome extension to make HN more user friendly. The extension will activate when you're on hacker news once… |
Taille du Fichier | 59.73 KB |
Nombre d'Installations | 31 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2013-06-19 |
Date de Publication | 2013-06-19 |
Évaluation | 4.75/5 Total 4 Évaluations |
Développeur | lishi1608 |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/seekerlee/Hacker-News-Tweak |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News Tweak", "version": "1.1", "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "images\/icon22.png", "default_title": "Hacker News Tweak", "default_popup": "info.html" }, "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "css": [ "content_style.css" ], "js": [ "jquery-2.0.2.min.js", "content_script.js" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |