Twitter Bird Shield

This plugin can block malicious users and optimize the interface. It can also auto-expand sub-lists, video downloads!

Apa itu Twitter Bird Shield?

Twitter Bird Shield adalah ekstensi Chrome yang dikembangkan oleh FreeSpiritDev, dan fitur utamanya adalah "This plugin can block malicious users and optimize the interface. It can also auto-expand sub-lists, video downloads!".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Twitter Bird Shield

Unduh file ekstensi Twitter Bird Shield dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        This is a plugin that can completely solve the issue of explicit content tweets (pornographic tweets)!

When developing plugins related to personal information, some principles should be followed:
1. Personal information should not be stolen.
2. Data should not be controlled by anyone, and should not control anyone.
3. Even if the plugin is no longer maintained, the data should still be usable.
4. It should be decentralized, allowing everyone to publish and subscribe.

This plugin is exactly that! A pure client application with no servers involved; data is exchanged only through GitHub! Therefore, it is impossible to collect user information.

Features included:

One. Malicious Account Blocking
   1. Can be used to block various malicious accounts and tweets, such as explicit content tweets, harassment tweets, bots, etc.
   2. Will default to downloading a blacklist database of malicious accounts provided by the developer.
   3. You can also subscribe to other trusted shared blacklist databases.
   4. Will automatically update the blacklist data based on settings.
   5. For content outside the blacklist, keyword blocking can be used.
   6. Keyword blocking supports fuzzy matching and regular expressions.
   7. All blocking operations have clear records and can be undone at any time.
   8. You can search the list by keyword, category, certification, etc.

Two. Search Assistant
   1. Can categorize and search tweets.
   2. Can search for specific categories, languages, tweets with replies, and tweets with likes.
   3. Can search within a specific time range or automatically locate tweets from a certain user's registration time.
   4. You can search for specific users next to their profile pictures, including tweets where they replied to you or you replied to them.
   5. In the search box, press Ctrl+Enter to search your own tweets.

Three. Account Tagging
   1. Solves the problem of forgetting due to following too many users.
   2. Tags are based on numeric IDs, so they remain valid even if a user changes their username.
   3. Because tags are based on numeric IDs, they can also be used to track malicious users who change their names.
   

 4. Tags can have labels added to them.
   5. Notes can be added.

Four. Data Sharing
   1. All account actions and user tags can be backed up to GitHub.
   2. Data can be shared by giving others access permissions.
   3. If the repository is made public, custom list libraries can be published.
   4. Blacklist libraries, whitelist libraries, user tag libraries, keyword rules, etc., can be published.

Five. Access Optimization
   1. "Discover more" can be removed.
   2. More replies can be automatically expanded.
   3. Advertisements can be blocked.
   4. Invalid content can be cleaned up, hiding unsightly marks left in the body of the tweet.

Six. Download Assistant
   1. Videos in tweets can be directly downloaded.
   2. Original images from tweets can be downloaded.
   3. If there are multiple images and videos, they will be downloaded together.
   4. Downloaded videos and images will be automatically named based on the tweet content.                    

Informasi Dasar Ekstensi

Nama Twitter Bird Shield Twitter Bird Shield
ID igapbfjkbkmjcmgjmgfcegamhkfppdmg
URL Resmi https://chromewebstore.google.com/detail/twitter-bird-shield/igapbfjkbkmjcmgjmgfcegamhkfppdmg
Deskripsi This plugin can block malicious users and optimize the interface. It can also auto-expand sub-lists, video downloads!
Ukuran File 456 KB
Jumlah Instalasi 1,085
Versi Saat Ini 0.1.4
Terakhir Diperbarui 2024-02-08
Tanggal Publikasi 2023-10-05
Penilaian 4.69/5 Total 13 Penilaian
Pengembang FreeSpiritDev
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "version": "0.1.4",
    "manifest_version": 3,
    "permissions": [
        "downloads",
        "cookies",
        "storage",
        "scripting",
        "unlimitedStorage",
        "tabs",
        "alarms"
    ],
    "host_permissions": [
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.x.com\/*",
        "*:\/\/api.github.com\/*",
        "*:\/\/*.openai.com\/*"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png"
    },
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_popup": "popup.html"
    },
    "default_locale": "zh_CN",
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js",
                "web.js",
                "vendors.js",
                "background.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/x.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "css": [
                "css\/content.css"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/x.com\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/x.com\/*"
            ],
            "run_at": "document_start"
        }
    ]
}