Polygon Modulator

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

Co to jest Polygon Modulator?

Polygon Modulator to rozszerzenie Chrome opracowane przez Sabre IS Sabre, a jego główną funkcją jest „This extension blocks all comments from specific Polygon users. You choose who you hear.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Polygon Modulator

Pobierz pliki rozszerzeń Polygon Modulator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Polygon Modulator Polygon Modulator
ID nlejgnbgffgbedlfgjhpjpkcoefeoala
Oficjalny URL https://chromewebstore.google.com/detail/polygon-modulator/nlejgnbgffgbedlfgjhpjpkcoefeoala
Opis This extension blocks all comments from specific Polygon users. You choose who you hear.
Rozmiar pliku 44.69 KB
Liczba instalacji 21
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2016-01-21
Data Publikacji 2016-01-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Sabre IS Sabre
Typ Płatności free
Obsługiwane Języki 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\/"
    ]
}