Hacker News Duplicate Detector
Detects duplicate HN submissions.
Hacker News Duplicate Detectorとは何ですか?
Hacker News Duplicate Detectorはhttps://dannyadam.comによって開発されたChromeの拡張機能で、その主な機能は「Detects duplicate HN submissions.」です。
拡張機能のスクリーンショット
Hacker News Duplicate Detector拡張機能のCRXファイルをダウンロード
Hacker News Duplicate Detector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
On Hacker News discussions, this extension generates links to existing Hacker News posts that point to the same URL.
拡張機能の基本情報
名前 | Hacker News Duplicate Detector |
ID | ocagpmnfhgbgmbaaimpehpbnnplkmpkd |
公式URL | https://chromewebstore.google.com/detail/hacker-news-duplicate-det/ocagpmnfhgbgmbaaimpehpbnnplkmpkd |
説明 | Detects duplicate HN submissions. |
ファイルサイズ | 20.65 KB |
インストール数 | 37 |
現在のバージョン | 1.9.0 |
最終更新日 | 2023-12-16 |
公開日 | 2020-03-28 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://dannyadam.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/dstein64/hn-duplicate-detector |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "js": [ "src\/library.js", "src\/main.js" ], "matches": [ "https:\/\/news.ycombinator.com\/item?id=*" ] } ], "description": "Detects duplicate HN submissions.", "icons": { "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "manifest_version": 2, "name": "Hacker News Duplicate Detector", "options_ui": { "page": "src\/options.html" }, "permissions": [ "https:\/\/hn.algolia.com\/api\/v1\/search?query=*", "storage" ], "version": "1.9.0" } |