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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |