Polygon Modulator
This extension blocks all comments from specific Polygon users. You choose who you hear.
ما هو Polygon Modulator؟
Polygon Modulator هو إضافة Chrome تم تطويرها بواسطة Sabre IS Sabre، والميزة الرئيسية لها هي "This extension blocks all comments from specific Polygon users. You choose who you hear.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Polygon Modulator
قم بتنزيل ملفات الامتداد Polygon Modulator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Ever want to just enjoy the comments on Polygon, but one voice is wrecking the conversation? Well, now you can do something about it! With Polygon Modulator, you can just add that user to your list of blocked users. You won't see their comments in the thread, and new comments will be picked out as you go. Better yet, you won't have any way to respond to that user (just in case you are tempted). This product was developed on my own initiative, but does not conflict with the Polygon Community Guidelines. You are only affecting what you see in your browser.
معلومات أساسية عن التمديد
الاسم | |
ID | nlejgnbgffgbedlfgjhpjpkcoefeoala |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/polygon-modulator/nlejgnbgffgbedlfgjhpjpkcoefeoala |
الوصف | This extension blocks all comments from specific Polygon users. You choose who you hear. |
حجم الملف | 44.69 KB |
عدد التثبيتات | 21 |
النسخة الحالية | 0.2.0 |
آخر تحديث | 2016-01-21 |
تاريخ النشر | 2016-01-20 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Sabre IS Sabre |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Polygon Modulator", "short_name": "PolyMod", "description": "This extension blocks all comments from specific Polygon users. You choose who you hear.", "version": "0.2.0", "options_page": "options.html", "content_scripts": [ { "js": [ "jquery-2.2.0.min.js", "content.js" ], "css": [ "styles.css" ], "matches": [ "http:\/\/www.polygon.com\/*", "https:\/\/www.polygon.com\/*" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_title": "Filter comments" }, "permissions": [ "activeTab", "storage", "https:\/\/ajax.googleapis.com\/" ] } |