Mass follow for Twitter
A feature-rich extension to mass follow and unfollow on Twitter.
Mass follow for Twitterคืออะไร?
Mass follow for Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Clemens Teichmann และคุณลักษณะหลักของมันคือ "A feature-rich extension to mass follow and unfollow on Twitter."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mass follow for Twitter
ดาวน์โหลดไฟล์ส่วนขยาย Mass follow for Twitter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
USAGE
1. Log into twitter.com
2. Go to a page with profiles (followers, following, search, list members, likes/retweets)
3. The buttons "Follow all" and "Unfollow all" should appear
4. Use one of the buttons
CAUTION
Please carefully read the Twitter following rules and best practices. To prevent account suspension/locking increase the wait, limit your follow sessions and take a longer break between the sessions.
FEATURES
- Bulk follow
- Bulk unfollow
- Counter
- Pause and resume bulk follow/unfollow
- Inplace logs
- works also on the search accounts page
- works with profiles from lists and likes/retweets
- AutoScroll (Please refresh the page by pressing F5, if it does not work)
OPTIONS
Follow:
- Wait
- Limit
- Skip followed
- Profile image required
- Bio required
- Skip protected
- Skip follower
- Blacklist
Unfollow:
- Wait
- Days followed (minimum)
- Limit
- Skip follower
- Skip Verified
- Blacklist
Twitter limit exceeded
- Wait
Performance tuning
- Hide profile avatar and background images while (un)following
SOURCE CODE
https://github.com/tlemens/twitter-mass-follow
CHANGELOG
https://github.com/tlemens/twitter-mass-follow/commits/master ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | lfmanfkmmgfigbnjibfemdnnfjboficn |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mass-follow-for-twitter/lfmanfkmmgfigbnjibfemdnnfjboficn |
| คำอธิบาย | A feature-rich extension to mass follow and unfollow on Twitter. |
| ขนาดไฟล์ | 22.2 KB |
| จำนวนการติดตั้ง | 10,000 |
| เวอร์ชันปัจจุบัน | 17 |
| อัปเดตครั้งล่าสุด | 2020-02-10 |
| วันที่เผยแพร่ | 2020-02-10 |
| คะแนน | 4.18/5 รวมทั้งหมด 509 คะแนน |
| ผู้พัฒนา | Clemens Teichmann |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | http://www.clemensteichmann.com/mass-follow-for-twitter.html |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mass follow for Twitter",
"version": "17",
"minimum_chrome_version": "49.0.0.0",
"description": "A feature-rich extension to mass follow and unfollow on Twitter.",
"homepage_url": "http:\/\/www.clemensteichmann.com\/mass-follow-for-twitter.html",
"author": "Clemens Teichmann",
"permissions": [
"storage",
"https:\/\/twitter.com\/*",
"unlimitedStorage"
],
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"class_list.js",
"extension.js"
],
"css": [
"extension.css"
]
}
],
"web_accessible_resources": [
"extension.html"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |