hn-friends
Highlight and tag your friends on Hacker News.
What is hn-friends?
hn-friends is a Chrome extension developed by jessejesse123, and its main feature is "Highlight and tag your friends on Hacker News.".
Extension Screenshots
Download hn-friends Extension CRX File
Download hn-friends extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Highlight and tag your friends on Hacker News.
Extension Basic Information
Name | hn-friends |
ID | ffgfcbfgdemibfcpcfkpicfgkiojbdkn |
Official URL | https://chromewebstore.google.com/detail/hn-friends/ffgfcbfgdemibfcpcfkpicfgkiojbdkn |
Description | Highlight and tag your friends on Hacker News. |
File Size | 15.83 KB |
Installation Count | 27 |
Current Version | 1.2 |
Last Updated | 2018-08-10 |
Publish Date | 2018-08-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | jessejesse123 |
Payment Type | free |
Supported Languages | 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" } } |