SideHN
The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN
Qu'est-ce que SideHN ?
SideHN est une extension Chrome développée par https://lowtechguys.com, et sa fonction principale est "The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SideHN
Téléchargez les fichiers d'extension SideHN 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
The extension adds a parameter to the links on a Hacker News page, so that when you click on the link, the article page will show a sidebar with the HN comments for that link. The extension can be disabled for individual domains by clicking on its icon.
Informations de Base sur l'Extension
Nom | SideHN |
ID | onhcdbnmlldkpneodnponijjndidkgph |
URL Officiel | https://chromewebstore.google.com/detail/sidehn/onhcdbnmlldkpneodnponijjndidkgph |
Description | The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN |
Taille du Fichier | 35.11 KB |
Nombre d'Installations | 44 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-08-30 |
Date de Publication | 2023-08-29 |
Développeur | https://lowtechguys.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/alin23/sidehn |
URL de la Page d'Aide | https://github.com/alin23/sidehn/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SideHN", "version": "1.0", "description": "The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN", "author": "Alin Panaitiu", "homepage_url": "https:\/\/github.com\/alin23\/sidehn", "icons": { "16": "[email protected]", "48": "[email protected]", "128": "[email protected]" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/news.ycombinator.com\/*", "*:\/\/*\/*?*hnid=*" ], "permissions": [ "activeTab", "tabs", "storage", "declarativeNetRequest", "cookies" ], "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*", "*:\/\/*\/*?*hnid=*" ], "js": [ "browser-polyfill.min.js", "script.js" ], "run_at": "document_end" } ], "minimum_chrome_version": "102.0", "action": { "default_icon": { "16": "[email protected]", "48": "[email protected]", "128": "[email protected]" }, "default_title": "SideHN", "default_popup": "popup.html" }, "declarative_net_request": { "rule_resources": [ { "id": "ruleset", "enabled": true, "path": "rules.json" } ] } } |