Momento for Hacker News
Add tags to HN users so you can remember them in the future
什麼是Momento for Hacker News?
Momento for Hacker News是由https://swaglord.co開發的Chrome擴展程式,該擴展的主要功能是“Add tags to HN users so you can remember them in the future”。
擴展截圖
下載Momento for Hacker News擴展crx文件
下載Momento for Hacker News擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- Add tags to users on HN: so you can remember all the cool people on there
- Keep track of who works where (astroturfing counter-measures)
- You'll get some pre-existing tags to jump-start your own user tags
- Avoid embarrassing yourself (https://news.ycombinator.com/item?id=35079)
- Unobtrusive by default: stays out of the way when not using tags
- Suggested tags coming soon!
- Syncing coming soon! 擴展基本資訊
| 名稱 | |
| ID | ldamdlljpkkejoiohakbapncdjfolgfh |
| 官方網址 | https://chromewebstore.google.com/detail/momento-for-hacker-news/ldamdlljpkkejoiohakbapncdjfolgfh |
| 簡介 | Add tags to HN users so you can remember them in the future |
| 檔案大小 | 133 KB |
| 安裝次數 | 22 |
| 目前版本 | 1.1 |
| 更新時間 | 2017-07-17 |
| 上架時間 | 2017-07-16 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://swaglord.co |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Momento for Hacker News",
"short_name": "HN User Tagger",
"description": "Add tags to HN users so you can remember them in the future",
"version": "1.1",
"minimum_chrome_version": "56.0.2924",
"background": {
"scripts": [
".\/event-page.js"
],
"persistent": false
},
"icons": {
"16": ".\/icon16.png",
"48": ".\/icon48.png",
"128": ".\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/news.ycombinator.com\/*"
],
"css": [
".\/content-script.css"
],
"js": [
".\/content-script.js"
]
}
]
} | |