NoVote

Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.

NoVote란 무엇입니까?

NoVote은(는) dan-lovelace에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows removal of various features from Reddit's interface such as upvote buttons and comment scores."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Browse Reddit without all the noise by toggling different features on and off. Customizable options give control over the following:

• Upvote and downvote buttons
• Post scores
• Comment scores
• Comments links
• Post comment counts
• User karma
• Gild badges
• Notifications button

* Reddit is constantly making changes to their layouts which means the extension may not always work as expected. If you are experiencing issues, please open a ticket by selecting the 'Support' tab and clicking 'Contact the developer'. Thanks to everyone that has created a ticket in the past, it's been very helpful in keeping things up to date so far.                    

확장 프로그램 기본 정보

이름 NoVote NoVote
ID kepihiliocoofjjbgmcmalnjmeclpnga
공식 URL https://chromewebstore.google.com/detail/novote/kepihiliocoofjjbgmcmalnjmeclpnga
설명 Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.
파일 크기 114 KB
설치 횟수 184
현재 버전 0.1.66
최근 업데이트 2022-01-03
출시 날짜 2019-12-01
평점 3.84/5 총 19 개의 평점
개발자 dan-lovelace
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dan-lovelace/novote
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NoVote",
    "manifest_version": 2,
    "version": "0.1.66",
    "description": "Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "bundle.background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "bundle.content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_icon": "images\/novote32.png",
        "default_title": "NoVote",
        "default_popup": ".\/popup\/index.html"
    },
    "icons": {
        "16": "images\/novote16.png",
        "32": "images\/novote32.png",
        "48": "images\/novote48.png",
        "128": "images\/novote128.png"
    }
}