Polygon Modulator
This extension blocks all comments from specific Polygon users. You choose who you hear.
Qu'est-ce que Polygon Modulator ?
Polygon Modulator est une extension Chrome développée par Sabre IS Sabre, et sa fonction principale est "This extension blocks all comments from specific Polygon users. You choose who you hear.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Polygon Modulator
Téléchargez les fichiers d'extension Polygon Modulator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | nlejgnbgffgbedlfgjhpjpkcoefeoala |
URL Officiel | https://chromewebstore.google.com/detail/polygon-modulator/nlejgnbgffgbedlfgjhpjpkcoefeoala |
Description | This extension blocks all comments from specific Polygon users. You choose who you hear. |
Taille du Fichier | 44.69 KB |
Nombre d'Installations | 21 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2016-01-21 |
Date de Publication | 2016-01-20 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Sabre IS Sabre |
Type de Paiement | free |
Langues Prises en Charge | 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\/" ] } |