Verified Tweets Only

Simple extension to only show verified tweets on Twitter

Verified Tweets Onlyとは何ですか?

Verified Tweets Onlyはhttps://verifiedtweetsonly.comによって開発されたChromeの拡張機能で、その主な機能は「Simple extension to only show verified tweets on Twitter」です。

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

screenshot

Verified Tweets Only拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Simple extension to only show verified tweets on Twitter.

All you got to do is check/uncheck to filter tweets from verified tweeple only!

Works in:
- home feed
- search results
- tweet replies
... and anywhere else tweets show up!

The code is open source ( https://github.com/RajatVaghani/verified-tweets-only ) and extremely light weight and easy to use - and most importantly, it gets the job done!                    

拡張機能の基本情報

名前 Verified Tweets Only Verified Tweets Only
ID ecgogipmgmochbfeecomhobmbjfpikdo
公式URL https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo
説明 Simple extension to only show verified tweets on Twitter
ファイルサイズ 90.9 KB
インストール数 40
現在のバージョン 0.0.1
最終更新日 2021-06-24
公開日 2021-06-24
評価 3.00/5 合計 2 レビュー
開発者 https://verifiedtweetsonly.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://verifiedtweetsonly.com
ヘルプページのURL https://verifiedtweetsonly.com
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Verified Tweets Only",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Simple extension to only show verified tweets on Twitter",
    "icons": {
        "16": "icons\/icon_on.png",
        "48": "icons\/icon_on.png",
        "128": "icons\/icon_on.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "storage.js",
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icons\/icon_on.png",
            "38": "icons\/icon_on.png"
        },
        "default_popup": "popup.html",
        "default_title": "Verified Tweets Only"
    }
}