NoVote
Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.
ما هو NoVote؟
NoVote هو إضافة Chrome تم تطويرها بواسطة dan-lovelace، والميزة الرئيسية لها هي "Allows removal of various features from Reddit's interface such as upvote buttons and comment scores.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة NoVote
قم بتنزيل ملفات الامتداد NoVote بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |