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 |
| 公式URL | 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"
}
} | |