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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}