Anti TwitterSpam

Twitterのスパムにさようならして快適なツイ廃ライフを!

Anti TwitterSpam क्या है?

Anti TwitterSpam よっキング द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Twitterのスパムにさようならして快適なツイ廃ライフを!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Anti TwitterSpam एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Twitterのスパムを非表示にする拡張機能です!

Say goodbye to Twitter spam and enjoy a comfortable Twitter life! This is a browser extension that hides Twitter spam!

[The English text is provided below.]
この拡張機能は、X(旧Twitter)に発生したスパムに対して非表示やミュート、ブロック、Twitter側のツイートの非表示(ツイ主のみ)を行う拡張機能です。
導入してからすぐにスパムがなくなります。
また、認証マークがついていないスパムにもある程度対処できるようになっています。
誤検知対策としてフォローしている人は基本スパムと判定されません。

対象範囲
・返信欄
⇒絵文字だけのツイートなどのスパムや、虚偽の内容などを含む悪質なサイトなどを非表示にします。
・通知欄
⇒無差別に通知を飛ばしてくるスパムを非表示にします。

*新機能:「スパム報告してブロック」*
「スパム報告してブロック」を有効にするとスパム報告+ブロックをワンクリックで行えるようになります。(スマホも対応)

【注意】
検知率は100%ではありません。スパムであっても検知されない人やスパムではないのに検知される人もいます。
そのようなことがあれば報告をお願いします。

ソースコード:https://github.com/ykundesu/AntiTwitterSpam
プルリクエスト歓迎!

▼英語(English)▼
Hide spam from Twitter!

This browser extension hides spam that occurs on X (formerly Twitter). There are no settings; just install it, and spam disappears. It can also handle to some extent spam without authentication marks.

Target areas:
・Replies section
⇒ Hides malicious sites, such as spam tweets with only emojis or false content.
・Notifications
⇒ Hides indiscriminate spam notifications.

[Note]
Detection rate is not 100%. Some people may not be detected as spam even if they are, and others may be detected as spam when they're not. If you encounter such situations, please report them.
This extension is for Japanese users.
Therefore, the false positive rate increases dramatically for non-Japanese languages such as English.

Source code:https://github.com/ykundesu/AntiTwitterSpam
Pull request welcome!                    

एक्सटेंशन की मूल जानकारी

नाम Anti TwitterSpam Anti TwitterSpam
ID kidepcmgoakfaefpgjkmkkkmcidneffo
आधिकारिक URL https://chromewebstore.google.com/detail/anti-twitterspam/kidepcmgoakfaefpgjkmkkkmcidneffo
विवरण Twitterのスパムにさようならして快適なツイ廃ライフを!
फ़ाइल का आकार 74.98 KB
स्थापना संख्या 484
वर्तमान संस्करण 1.2.5
अंतिम अपडेट 2024-01-13
प्रकाशन तिथि 2023-12-13
रेटिंग 4.00/5 कुल 2 रेटिंग्स
डेवलपर よっキング
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Anti TwitterSpam",
    "version": "1.2.5",
    "action": {
        "default_title": "Anti TwitterSpam",
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "description": "Twitter\u306e\u30b9\u30d1\u30e0\u306b\u3055\u3088\u3046\u306a\u3089\u3057\u3066\u5feb\u9069\u306a\u30c4\u30a4\u5ec3\u30e9\u30a4\u30d5\u3092!",
    "icons": {
        "256": "icon.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icon.png",
                "twitter_script.js",
                "twitter_style.css"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "109.0"
        },
        "gecko_android": {
            "id": "[email protected]",
            "strict_min_version": "120.0"
        }
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/*",
        "https:\/\/mobile.twitter.com\/*"
    ],
    "author": "https:\/\/twitter.com\/ReYYYYoking"
}