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 |
| 公式URL | 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 |
| Eメール | [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"
]
}
]
} | |