Polygon Modulator

This extension blocks all comments from specific Polygon users. You choose who you hear.

Was ist Polygon Modulator?

Polygon Modulator ist eine Chrome-Erweiterung, die von Sabre IS Sabre entwickelt wurde, und ihr Hauptmerkmal ist "This extension blocks all comments from specific Polygon users. You choose who you hear.".

Erweiterungsscreenshots

screenshot

Polygon Modulator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Polygon Modulator-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Polygon Modulator Polygon Modulator
ID nlejgnbgffgbedlfgjhpjpkcoefeoala
Offizielle URL https://chromewebstore.google.com/detail/polygon-modulator/nlejgnbgffgbedlfgjhpjpkcoefeoala
Beschreibung This extension blocks all comments from specific Polygon users. You choose who you hear.
Dateigröße 44.69 KB
Installationsanzahl 21
Aktuelle Version 0.2.0
Letztes Update 2016-01-21
Veröffentlichungsdatum 2016-01-20
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Sabre IS Sabre
Zahlungsart free
Unterstützte Sprachen 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\/"
    ]
}