NoVote
Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.
Was ist NoVote?
NoVote ist eine Chrome-Erweiterung, die von dan-lovelace entwickelt wurde, und ihr Hauptmerkmal ist "Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.".
Erweiterungsscreenshots
NoVote-Erweiterungs-CRX-Datei herunterladen
Laden Sie NoVote-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kepihiliocoofjjbgmcmalnjmeclpnga |
| Offizielle URL | https://chromewebstore.google.com/detail/novote/kepihiliocoofjjbgmcmalnjmeclpnga |
| Beschreibung | Allows removal of various features from Reddit's interface such as upvote buttons and comment scores. |
| Dateigröße | 114 KB |
| Installationsanzahl | 184 |
| Aktuelle Version | 0.1.66 |
| Letztes Update | 2022-01-03 |
| Veröffentlichungsdatum | 2019-12-01 |
| Bewertung | 3.84/5 Insgesamt 19 Bewertungen |
| Entwickler | dan-lovelace |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/dan-lovelace/novote |
| Unterstützte Sprachen | 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"
}
} | |