Likers Blocker

Block likers, retweeters, list members and Twitter ads.

Likers Blockerคืออะไร?

Likers Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย likers.blocker และคุณลักษณะหลักของมันคือ "Block likers, retweeters, list members and Twitter ads."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Likers Blocker

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

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

                        ------------------------------------------------------------------------------------------------------------
Release Notes: https://github.com/dmstern/likers-blocker/releases
------------------------------------------------------------------------------------------------------------

Usage Manual: https://dmstern.github.io/likers-blocker/#usage

Block likers
------------------
*  Once you click on a tweet, there is a link which indicates how many people liked this tweet.
*  Click on that link to get the list of all likers
* Then click on the new button on the top which says "Block all". 
* After collecting the likers confirm that you want them blocked
* The accounts will be added to a queue and the extension will slowly block all of them in the background while your browser is open.
* You can watch the progress in the extension. 
* ✔ DONE. All the collected likers of the tweet are blocked. 😇

Block List Members
--------------------------------

* Click on the details of a list
* Click on "members"
* Then proceed with the third point above ("Block All").

Devleoped by
----------------------
Daniel Morgenstern (front-end) & Philip Kreißel (back-end)


Follow us:
----------------

🐦 https://twitter.com/LikersBlocker


Donate
--------------

    paypal.me/dmstr
    paypal.me/philipkreissel
    patreon.com/danielmorgenstern                    

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

ชื่อ Likers Blocker Likers Blocker
ID melnbpmfhaejmcpfflfjmchondkpmkcj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/likers-blocker/melnbpmfhaejmcpfflfjmchondkpmkcj
คำอธิบาย Block likers, retweeters, list members and Twitter ads.
ขนาดไฟล์ 4.32 MB
จำนวนการติดตั้ง 7,129
เวอร์ชันปัจจุบัน 4.0.3
อัปเดตครั้งล่าสุด 2023-03-27
วันที่เผยแพร่ 2020-05-02
คะแนน 3.17/5 รวมทั้งหมด 65 คะแนน
ผู้พัฒนา likers.blocker
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://dmstern.github.io/likers-blocker/
URL หน้าช่วยเหลือ https://github.com/dmstern/likers-blocker/issues
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "version": "4.0.3",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "index.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "webRequest",
        "alarms",
        "cookies",
        "downloads",
        "tabs",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/*.twitter.com\/*"
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{89935eae-8bfa-4d3b-ad16-0881dff87d50}"
        }
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self' https:\/\/api.twitter.com; script-src 'self'; object-src 'self'; connect-src 'self' https:\/\/api.twitter.com https:\/\/twitter.com\/; img-src 'self' https:\/\/pbs.twimg.com https:\/\/abs.twimg.com;"
    },
    "default_locale": "en"
}