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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This plugin blocks particular users from being visible on the FOK! forum (including when they are quoted). You can configure users…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FOKBlocker Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ID | iaojkcklghaojnfojnbihbgnbpcldoae |
आधिकारिक URL | 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" } } |