Hacker News Collapsible Comments
Adds reddit-like [+] and [-] links to collapse and expand comment threads.
Qu'est-ce que Hacker News Collapsible Comments ?
Hacker News Collapsible Comments est une extension Chrome développée par muitocomplicado, et sa fonction principale est "Adds reddit-like [+] and [-] links to collapse and expand comment threads.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hacker News Collapsible Comments
Téléchargez les fichiers d'extension Hacker News Collapsible Comments 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
Based on the bookmarklet code by niyazpk. https://github.com/niyazpk/Collapsible-comments-for-Hacker-News v1.3 - Added support for https and updated the collapsible comments script.
Informations de Base sur l'Extension
Nom | Hacker News Collapsible Comments |
ID | hockhafcdegocajmjhafgjncjpodihkd |
URL Officiel | https://chromewebstore.google.com/detail/hacker-news-collapsible-c/hockhafcdegocajmjhafgjncjpodihkd |
Description | Adds reddit-like [+] and [-] links to collapse and expand comment threads. |
Taille du Fichier | 42.23 KB |
Nombre d'Installations | 283 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2013-03-12 |
Date de Publication | 2013-03-12 |
Évaluation | 4.67/5 Total 27 Évaluations |
Développeur | muitocomplicado |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News Collapsible Comments", "version": "1.3", "manifest_version": 2, "description": "Adds reddit-like [+] and [-] links to collapse and expand comment threads.", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/news.ycombinator.com\/*", "https:\/\/news.ycombinator.com\/*", "http:\/\/hackerne.ws\/*", "https:\/\/hackerne.ws\/*" ], "js": [ "jquery.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ] } |