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文件

下載NoVote擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}