Twitter Follower Blocker
Bulk tool for blocking Twitter followers.
Twitter Follower Blocker란 무엇입니까?
Twitter Follower Blocker은(는) Octal Research, LLC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bulk tool for blocking Twitter followers."입니다.
확장 프로그램 스크린샷
Twitter Follower Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Purpose: Fight the scourge of fake Twitter follower spam! Partially automates the (currently) painful multiple-click process to block obvious fake accounts following yours by providing a check box interface to select multiple accounts at once. Usage: Log into your Twitter account, click on your Followers page, and then click on this extension's icon (which should appear in the address bar). The Twitter Followers page uses an "infinite scroll" technique which loads more accounts to the screen as you scroll downward in your browser. Twitter Follower Blocker will only be able to see the followers currently visible on the page. About: This extension is open source and released under the GPLv3 license! You can view the source and contribute at https://bitbucket.org/ratfactor/twitterfollowerblocker This project is by Dave Gauer. Though it is completely free, I am publishing it under the business name, Octal Research, LLC.
확장 프로그램 기본 정보
이름 | |
ID | clmjfekijbbiblcnelcmmfnlaaancehn |
공식 URL | https://chrome.google.com/webstore/detail/twitter-follower-blocker/clmjfekijbbiblcnelcmmfnlaaancehn |
설명 | Bulk tool for blocking Twitter followers. |
파일 크기 | 47.25 KB |
설치 횟수 | 1,287 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2015-03-13 |
출시 날짜 | 2015-03-13 |
평점 | 2.83/5 총 48 개의 평점 |
개발자 | Octal Research, LLC |
결제 유형 | free |
도움말 페이지 URL | https://bitbucket.org/ratfactor/twitterfollowerblocker |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Follower Blocker", "short_name": "TwitBlock", "description": "Bulk tool for blocking Twitter followers.", "version": "0.0.3", "permissions": [ "tabs", "https:\/\/twitter.com\/followers" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/followers" ], "js": [ "jquery.js", "page.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_title": "Block Followers", "default_icon": "icon48.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |