Twitter No Spam

Twitter(X)のスパムコメントを排除、厳密には認証済みかつアカウント名に日本語が含まれていないものを非表示にします。また、URLや絵文字のみのリプライも非表示になるほか、単語で自動的に非表示にする機能もあります

What is Twitter No Spam?

Twitter No Spam is a Chrome extension developed by ときえのき, and its main feature is "Twitter(X)のスパムコメントを排除、厳密には認証済みかつアカウント名に日本語が含まれていないものを非表示にします。また、URLや絵文字のみのリプライも非表示になるほか、単語で自動的に非表示にする機能もあります".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Twitter No Spam Extension CRX File

Download Twitter No Spam extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Twitterに出てくる海外のBotアカウントを排除します

認証済みバッジが付いていて、かつアカウント名に日本語が含まれていないものを非表示にします。
また、URLや絵文字のみのリプライも非表示になるほか、単語で自動的に非表示にする機能もあります                    

Extension Basic Information

Name Twitter No Spam Twitter No Spam
ID pohkfjndbakfgfaffloiecnfkaaggdbh
Official URL https://chromewebstore.google.com/detail/twitter-no-spam/pohkfjndbakfgfaffloiecnfkaaggdbh
Description Twitter(X)のスパムコメントを排除、厳密には認証済みかつアカウント名に日本語が含まれていないものを非表示にします。また、URLや絵文字のみのリプライも非表示になるほか、単語で自動的に非表示にする機能もあります
File Size 972 KB
Installation Count 1,303
Current Version 1.3.0
Last Updated 2024-01-30
Publish Date 2024-01-24
Rating 4.50/5 Total 8 Ratings
Developer ときえのき
Email [email protected]
Payment Type free
Extension Website https://github.com/jikantoki/Twitter_No_Spam
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter No Spam",
    "description": "Twitter(X)\u306e\u30b9\u30d1\u30e0\u30b3\u30e1\u30f3\u30c8\u3092\u6392\u9664\u3001\u53b3\u5bc6\u306b\u306f\u8a8d\u8a3c\u6e08\u307f\u304b\u3064\u30a2\u30ab\u30a6\u30f3\u30c8\u540d\u306b\u65e5\u672c\u8a9e\u304c\u542b\u307e\u308c\u3066\u3044\u306a\u3044\u3082\u306e\u3092\u975e\u8868\u793a\u306b\u3057\u307e\u3059\u3002\u307e\u305f\u3001URL\u3084\u7d75\u6587\u5b57\u306e\u307f\u306e\u30ea\u30d7\u30e9\u30a4\u3082\u975e\u8868\u793a\u306b\u306a\u308b\u307b\u304b\u3001\u5358\u8a9e\u3067\u81ea\u52d5\u7684\u306b\u975e\u8868\u793a\u306b\u3059\u308b\u6a5f\u80fd\u3082\u3042\u308a\u307e\u3059",
    "version": "1.3.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*",
                "http:\/\/x.com\/*",
                "https:\/\/x.com\/*"
            ],
            "js": [
                "twitterNoSpam.js"
            ],
            "css": [
                "isSpam.css"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    }
}