Polygon Modulator

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

Polygon Modulator là gì?

Polygon Modulator là một tiện ích mở rộng Chrome được phát triển bởi Sabre IS Sabre, và tính năng chính của nó là "This extension blocks all comments from specific Polygon users. You choose who you hear.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Polygon Modulator

Tải xuống các tệp mở rộng Polygon Modulator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Polygon Modulator Polygon Modulator
ID nlejgnbgffgbedlfgjhpjpkcoefeoala
URL Chính Thức https://chromewebstore.google.com/detail/polygon-modulator/nlejgnbgffgbedlfgjhpjpkcoefeoala
Mô tả This extension blocks all comments from specific Polygon users. You choose who you hear.
Kích Thước Tệp 44.69 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2016-01-21
Ngày Phát Hành 2016-01-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Sabre IS Sabre
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}