Hacker News Duplicate Detector

Detects duplicate HN submissions.

Wat is Hacker News Duplicate Detector?

Hacker News Duplicate Detector is een Chrome-extensie ontwikkeld door https://dannyadam.com, en de belangrijkste functie is "Detects duplicate HN submissions.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Hacker News Duplicate Detector

Download Hacker News Duplicate Detector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        On Hacker News discussions, this extension generates links to existing Hacker News posts that point to the same URL.                    

Basisinformatie over de Extensie

Naam Hacker News Duplicate Detector Hacker News Duplicate Detector
ID ocagpmnfhgbgmbaaimpehpbnnplkmpkd
Officiële URL https://chromewebstore.google.com/detail/hacker-news-duplicate-det/ocagpmnfhgbgmbaaimpehpbnnplkmpkd
Beschrijving Detects duplicate HN submissions.
Bestandsgrootte 20.65 KB
Aantal Installaties 37
Huidige Versie 1.9.0
Laatst Bijgewerkt 2023-12-16
Publicatiedatum 2020-03-28
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://dannyadam.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/dstein64/hn-duplicate-detector
Ondersteunde Talen 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"
}