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…"입니다.
확장 프로그램 스크린샷
FOKBlocker Chrome 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |