Polygon Modulator

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

什么是Polygon Modulator?

Polygon Modulator是由Sabre IS Sabre开发的Chrome扩展程序,该扩展的主要功能是“This extension blocks all comments from specific Polygon users. You choose who you hear.”。

扩展截图

screenshot

下载Polygon Modulator扩展crx文件

下载Polygon Modulator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Polygon Modulator Polygon Modulator
ID nlejgnbgffgbedlfgjhpjpkcoefeoala
官方URL https://chromewebstore.google.com/detail/polygon-modulator/nlejgnbgffgbedlfgjhpjpkcoefeoala
简介 This extension blocks all comments from specific Polygon users. You choose who you hear.
文件大小 44.69 KB
安装次数 21
当前版本 0.2.0
更新时间 2016-01-21
上架时间 2016-01-20
评分 5.00/5 共1次评分
开发者 Sabre IS Sabre
付费类型 free
支持的语言 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\/"
    ]
}