FOKBlocker Chrome

This plugin blocks particular users from being visible on the FOK! forum (including when they are quoted). You can configure users…

什麼是FOKBlocker Chrome?

FOKBlocker Chrome是由Dennis Vink開發的Chrome擴展程式,該擴展的主要功能是“This plugin blocks particular users from being visible on the FOK! forum (including when they are quoted). You can configure users…”。

擴展截圖

screenshot

下載FOKBlocker Chrome擴展crx文件

下載FOKBlocker Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This plugin blocks particular users from being visible on the FOK! forum (including when they are quoted). You can configure users to block in the settings. It is not very user friendly but it works. You'll have to list blocked users as follows:

user1,user2,user3 (comma separated, no spaces, case sensitive!).
You HAVE to refresh when you add or remove a user for it to take effect.

As of version 0.1.6 you can simply click the abo star(s) to the right of the username to block a user. It will open a new window with subscription information, which you can simply close.

Shout out to: Zosk, Tim, 4ebe, Dqod, Moeraskat <3

The plugin will remove said users' posts every second.

-- WAHRHEIT                    

擴展基本資訊

名稱 FOKBlocker Chrome FOKBlocker Chrome
ID iaojkcklghaojnfojnbihbgnbpcldoae
官方網址 https://chromewebstore.google.com/detail/fokblocker-chrome/iaojkcklghaojnfojnbihbgnbpcldoae
簡介 This plugin blocks particular users from being visible on the FOK! forum (including when they are quoted). You can configure users…
檔案大小 41.52 KB
安裝次數 21
目前版本 0.2.0
更新時間 2017-06-02
上架時間 2017-06-02
評分 5.00/5 共 3 次評分
開發者 Dennis Vink
電子郵箱 [email protected]
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FOKBlocker Chrome",
    "version": "0.2.0",
    "browser_action": {
        "default_icon": "icon_128.png"
    },
    "background": {
        "scripts": [
            "content.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/forum.fok.nl\/topic\/*",
                "http:\/\/forum.fok.nl\/topic\/*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "128": "icon_128.png"
    }
}