Reddit Deduplicator

Reddit Deduplicator

Hide duplicate posts on pre-redesign Reddit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reddit Deduplicator",
  "version": "1.4",
  "author": "Nicholas Gaya",
  "description": "Hide duplicate posts on pre-redesign Reddit.",
  "homepage_url": "https://nickgaya.github.io/rededup/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "*://*.thumbs.redditmedia.com/*",
    "storage"
  ],
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "browser-polyfill.js",
        "bgshim.js",
        "settings.js",
        "rededup.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "dct.js",
      "dwt.js",
      "phash.js",
      "background.js"
    ],
    "persistent": false
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAn0ryKXBfNTU8RVqLeQWhpHYzN7gj8NfJrd2CYVwjTVRLCLYNzoAUPB86DuWPEHX0wJ7Nao6MFNFXHNvp/heLerY2C9yiUAL7PCYWO4vwQhSEbbGaarR4DGbPcN6JBjg8RFwEdvR2Qwqt735ZHdtc3IpP+nu3JDRkA/qIGNrU38GFLgbbgenQtxrFhfbXRW7fIjudQz6pEG/rJ2LeE+BBqF5oyPNsZ1ZozgbeUKobWOrR6zou3KGkEx7850wWwBc8aINbgaNn8BtmR2pkD69MdJ9a4w+rfkDN2viSYNoytHvhz3W2GzifFQom1mH82mbJBC/TPpf7jk2b22rrq436yQIDAQAB"
}