Hacker News Duplicate Detector

Detects duplicate HN submissions.

What is Hacker News Duplicate Detector?

Hacker News Duplicate Detector is a Chrome extension developed by https://dannyadam.com, and its main feature is "Detects duplicate HN submissions.".

Extension Screenshots

screenshot

Download Hacker News Duplicate Detector Extension CRX File

Download Hacker News Duplicate Detector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Hacker News Duplicate Detector Hacker News Duplicate Detector
ID ocagpmnfhgbgmbaaimpehpbnnplkmpkd
Official URL https://chromewebstore.google.com/detail/hacker-news-duplicate-det/ocagpmnfhgbgmbaaimpehpbnnplkmpkd
Description Detects duplicate HN submissions.
File Size 20.65 KB
Installation Count 37
Current Version 1.9.0
Last Updated 2023-12-16
Publish Date 2020-03-28
Rating 5.00/5 Total 1 Ratings
Developer https://dannyadam.com
Email [email protected]
Payment Type free
Extension Website https://github.com/dstein64/hn-duplicate-detector
Supported Languages 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"
}