Hacker News Collapsible Comments
Adds reddit-like [+] and [-] links to collapse and expand comment threads.
Was ist Hacker News Collapsible Comments?
Hacker News Collapsible Comments ist eine Chrome-Erweiterung, die von muitocomplicado entwickelt wurde, und ihr Hauptmerkmal ist "Adds reddit-like [+] and [-] links to collapse and expand comment threads.".
Erweiterungsscreenshots
Hacker News Collapsible Comments-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hacker News Collapsible Comments-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hockhafcdegocajmjhafgjncjpodihkd |
| Offizielle URL | https://chromewebstore.google.com/detail/hacker-news-collapsible-c/hockhafcdegocajmjhafgjncjpodihkd |
| Beschreibung | Adds reddit-like [+] and [-] links to collapse and expand comment threads. |
| Dateigröße | 42.23 KB |
| Installationsanzahl | 283 |
| Aktuelle Version | 1.3 |
| Letztes Update | 2013-03-12 |
| Veröffentlichungsdatum | 2013-03-12 |
| Bewertung | 4.67/5 Insgesamt 27 Bewertungen |
| Entwickler | muitocomplicado |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
}
]
} | |