Reddit Deduplicator

Hide duplicate posts on pre-redesign Reddit.

Reddit Deduplicator란 무엇입니까?

Reddit Deduplicator은(는) Nick Gaya에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide duplicate posts on pre-redesign Reddit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Reddit Deduplicator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        When viewing a list of posts on reddit.com, the extension finds posts with the same URL or thumbnail and groups them together, showing only the first instance.

This is particularly useful when viewing an individual user's posts, as some users will post the same link or upload the same image to multiple subreddits. It can also be useful for viewing subscriptions or multireddits that aggregate posts from similar subreddits.

This extension is compatible with Reddit Enhancement Suite's "Never Ending Reddit" feature.

Merge icon by Freepik from www.flaticon.com (modified from original).                    

확장 프로그램 기본 정보

이름 Reddit Deduplicator Reddit Deduplicator
ID dnnbdjbnhfojinfmmiiehamhkheifbbg
공식 URL https://chromewebstore.google.com/detail/reddit-deduplicator/dnnbdjbnhfojinfmmiiehamhkheifbbg
설명 Hide duplicate posts on pre-redesign Reddit.
파일 크기 37.49 KB
설치 횟수 967
현재 버전 1.4
최근 업데이트 2021-05-25
출시 날짜 2020-11-23
평점 4.33/5 총 6 개의 평점
개발자 Nick Gaya
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://nickgaya.github.io/rededup/
지원되는 언어 en
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"
}