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. 擴展基本資訊
| 名稱 | |
| ID | onhcdbnmlldkpneodnponijjndidkgph |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
]
}
} | |