Twitter Follower Blocker
Bulk tool for blocking Twitter followers.
Twitter Follower Blockerคืออะไร?
Twitter Follower Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Octal Research, LLC และคุณลักษณะหลักของมันคือ "Bulk tool for blocking Twitter followers."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Follower Blocker
ดาวน์โหลดไฟล์ส่วนขยาย Twitter Follower Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |