Hacker News Duplicate Detector
Detects duplicate HN submissions.
Cos'è Hacker News Duplicate Detector?
Hacker News Duplicate Detector è un'estensione di Chrome sviluppata da https://dannyadam.com, e la sua funzione principale è "Detects duplicate HN submissions.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hacker News Duplicate Detector
Scarica i file di estensione Hacker News Duplicate Detector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
On Hacker News discussions, this extension generates links to existing Hacker News posts that point to the same URL.
Informazioni di Base sull'Estensione
Nome | Hacker News Duplicate Detector |
ID | ocagpmnfhgbgmbaaimpehpbnnplkmpkd |
URL Ufficiale | https://chromewebstore.google.com/detail/hacker-news-duplicate-det/ocagpmnfhgbgmbaaimpehpbnnplkmpkd |
Descrizione | Detects duplicate HN submissions. |
Dimensione del File | 20.65 KB |
Conteggio Installazioni | 37 |
Versione Corrente | 1.9.0 |
Ultimo Aggiornamento | 2023-12-16 |
Data di Pubblicazione | 2020-03-28 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://dannyadam.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/dstein64/hn-duplicate-detector |
Lingue Supportate | 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" } |