Twitter Bird Shield

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

Twitter Bird Shieldとは何ですか?

Twitter Bird ShieldはFreeSpiritDevによって開発されたChromeの拡張機能で、その主な機能は「This plugin can block malicious users and optimize the interface. It can also auto-expand sub-lists, video downloads!」です。

拡張機能のスクリーンショット

screenshot
screenshot

Twitter Bird Shield拡張機能のCRXファイルをダウンロード

Twitter Bird Shield拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Twitter Bird Shield Twitter Bird Shield
ID igapbfjkbkmjcmgjmgfcegamhkfppdmg
公式URL https://chromewebstore.google.com/detail/twitter-bird-shield/igapbfjkbkmjcmgjmgfcegamhkfppdmg
説明 This plugin can block malicious users and optimize the interface. It can also auto-expand sub-lists, video downloads!
ファイルサイズ 456 KB
インストール数 1,085
現在のバージョン 0.1.4
最終更新日 2024-02-08
公開日 2023-10-05
評価 4.69/5 合計 13 レビュー
開発者 FreeSpiritDev
Eメール [email protected]
支払い方法 free
対応言語 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"
        }
    ]
}