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
官方網址 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
電子郵箱 [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"
    }
}