Polygon Modulator
This extension blocks all comments from specific Polygon users. You choose who you hear.
Co je Polygon Modulator?
Polygon Modulator je rozšíření Chrome vyvinuté Sabre IS Sabre, a jeho hlavní funkcí je „This extension blocks all comments from specific Polygon users. You choose who you hear.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Polygon Modulator
Stáhněte si soubory rozšíření Polygon Modulator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | nlejgnbgffgbedlfgjhpjpkcoefeoala |
Oficiální URL | https://chromewebstore.google.com/detail/polygon-modulator/nlejgnbgffgbedlfgjhpjpkcoefeoala |
Popis | This extension blocks all comments from specific Polygon users. You choose who you hear. |
Velikost souboru | 44.69 KB |
Počet instalací | 21 |
Aktuální Verze | 0.2.0 |
Poslední Aktualizace | 2016-01-21 |
Datum Vydání | 2016-01-20 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Sabre IS Sabre |
Typ Platby | free |
Podporované Jazyky | 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\/" ] } |