Twitter Mass Unfollow

A simple (configurable) way to mass unfollow your Twitter followings

Twitter Mass Unfollowคืออะไร?

Twitter Mass Unfollow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codeshifu และคุณลักษณะหลักของมันคือ "A simple (configurable) way to mass unfollow your Twitter followings"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Mass Unfollow

ดาวน์โหลดไฟล์ส่วนขยาย Twitter Mass Unfollow ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If your Twitter following is a mess and you'd like to start afresh, look no further. Twitter Mass Unfollow will automagically unfollow all or some of your following so you don't have to "clicky clicky" because let's face it, no one has the time for that.

Video: https://www.youtube.com/watch?v=HR8tNrowxiw

USAGE
1. Visit https://twitter.com/following
2. Click "ALL" to unfollow all the people you follow on Twitter or "NOT FOLLOWING" to unfollow just the accounts you follow but are not following you back.
3. Use STOP to abort the whole process

Pro Tip: To see how the extension works without unfollowing anyone, click the DEMO button.

OPTIONS
The extension can be configured from the options page.

*Exclude users*
Keep a whitelist of users (Twitter handles/usernames) to not be unfollowed. This could be people that you both are following each other or not. Twitter handles added here will always be given priority regardless of the action button clicked.

*Stop after 1 minute*
The extension will stop running (unfollowing users) after 1minute from time started. If unchecked, it will run until there's no one to unfollow & you'd have to manually "STOP" the process as you see fit.

*Reload on finished*
Whether the extension should reload the current page after the running process is finished/done. By default, page will be refreshed. You can uncheck this to manually reload the page yourself.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter Mass Unfollow Twitter Mass Unfollow
ID bidolfkgmbnlnijabkjafdajjpocfhol
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-mass-unfollow/bidolfkgmbnlnijabkjafdajjpocfhol
คำอธิบาย A simple (configurable) way to mass unfollow your Twitter followings
ขนาดไฟล์ 243 KB
จำนวนการติดตั้ง 22,848
เวอร์ชันปัจจุบัน 1.1.5
อัปเดตครั้งล่าสุด 2023-02-12
วันที่เผยแพร่ 2022-01-02
คะแนน 4.02/5 รวมทั้งหมด 87 คะแนน
ผู้พัฒนา codeshifu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/codeshifu/twitter-mass-unfollow
URL หน้าช่วยเหลือ https://github.com/codeshifu/twitter-mass-unfollow/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Mass Unfollow",
    "description": "A simple (configurable) way to mass unfollow your Twitter followings",
    "version": "1.1.5",
    "manifest_version": 3,
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*\/following"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "shared.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "declarativeContent",
        "scripting",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    }
}