hn-friends
Highlight and tag your friends on Hacker News.
什麼是hn-friends?
hn-friends是由jessejesse123開發的Chrome擴展程式,該擴展的主要功能是“Highlight and tag your friends on Hacker News.”。
擴展截圖
下載hn-friends擴展crx文件
下載hn-friends擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Highlight and tag your friends on Hacker News. 擴展基本資訊
| 名稱 | |
| ID | ffgfcbfgdemibfcpcfkpicfgkiojbdkn |
| 官方網址 | https://chromewebstore.google.com/detail/hn-friends/ffgfcbfgdemibfcpcfkpicfgkiojbdkn |
| 簡介 | Highlight and tag your friends on Hacker News. |
| 檔案大小 | 15.83 KB |
| 安裝次數 | 27 |
| 目前版本 | 1.2 |
| 更新時間 | 2018-08-10 |
| 上架時間 | 2018-08-10 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | jessejesse123 |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "hn-friends",
"version": "1.2",
"description": "Highlight and tag your friends on Hacker News.",
"icons": {
"48": "icons\/48.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"img\/tag.svg"
],
"content_scripts": [
{
"matches": [
"https:\/\/news.ycombinator.com\/*"
],
"js": [
"src\/utils.js",
"src\/hn-friends.js"
]
},
{
"matches": [
"https:\/\/news.ycombinator.com\/user?id=*"
],
"js": [
"src\/user.js"
]
}
],
"browser_action": {
"browser_style": false,
"default_icon": {
"48": "icons\/48.png",
"96": "icons\/96.png"
},
"default_title": "HN Friends",
"default_popup": "popup\/popup.html"
}
} | |