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.
扩展基本信息
名称 | hn-friends |
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" } } |