FOKBlocker Chrome

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

Qu'est-ce que FOKBlocker Chrome ?

FOKBlocker Chrome est une extension Chrome développée par Dennis Vink, et sa fonction principale est "This plugin blocks particular users from being visible on the FOK! forum (including when they are quoted). You can configure users…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension FOKBlocker Chrome

Téléchargez les fichiers d'extension FOKBlocker Chrome au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom FOKBlocker Chrome FOKBlocker Chrome
ID iaojkcklghaojnfojnbihbgnbpcldoae
URL Officiel https://chromewebstore.google.com/detail/fokblocker-chrome/iaojkcklghaojnfojnbihbgnbpcldoae
Description This plugin blocks particular users from being visible on the FOK! forum (including when they are quoted). You can configure users…
Taille du Fichier 41.52 KB
Nombre d'Installations 21
Version Actuelle 0.2.0
Dernière Mise à Jour 2017-06-02
Date de Publication 2017-06-02
Évaluation 5.00/5 Total 3 Évaluations
Développeur Dennis Vink
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}