SideHN
The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN
SideHNとは何ですか?
SideHNはhttps://lowtechguys.comによって開発されたChromeの拡張機能で、その主な機能は「The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN」です。
拡張機能のスクリーンショット
SideHN拡張機能のCRXファイルをダウンロード
SideHN拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | SideHN |
ID | onhcdbnmlldkpneodnponijjndidkgph |
公式URL | https://chromewebstore.google.com/detail/sidehn/onhcdbnmlldkpneodnponijjndidkgph |
説明 | The web, with a side of HackerNews. Shows a sidebar with HN comments if the link was opened from HN |
ファイルサイズ | 35.11 KB |
インストール数 | 44 |
現在のバージョン | 1.0 |
最終更新日 | 2023-08-30 |
公開日 | 2023-08-29 |
開発者 | https://lowtechguys.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/alin23/sidehn |
ヘルプページのURL | https://github.com/alin23/sidehn/issues |
対応言語 | 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" } ] } } |