Twitter thread reader

Chrome extension that makes reading twitter threads easier.

Twitter thread reader란 무엇입니까?

Twitter thread reader은(는) thevarunraja에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that makes reading twitter threads easier."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitter thread reader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension helps you read “long twitter threads” easily(similar to that of a blog or an article). It hides all the unnecessary content and shows only the relevant content in a thread, thereby enhancing your reading experience.

Just click "View Thread in Reader mode" button to turn the twitter thread into a delightful reading experience. 

 Extension is privacy friendly, no data is collected and all compute happens on your device.                    

확장 프로그램 기본 정보

이름 Twitter thread reader Twitter thread reader
ID cbkbehonmkldgmpdpaigonchnngpbnlm
공식 URL https://chromewebstore.google.com/detail/twitter-thread-reader/cbkbehonmkldgmpdpaigonchnngpbnlm
설명 Chrome extension that makes reading twitter threads easier.
파일 크기 27.21 KB
설치 횟수 460
현재 버전 0.3
최근 업데이트 2022-02-15
출시 날짜 2022-02-07
평점 3.00/5 총 5 개의 평점
개발자 thevarunraja
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://threadreader.thevarunraja.com/
개인정보 보호 정책 페이지 URL https://threadreader.thevarunraja.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter thread reader",
    "description": "Chrome extension that makes reading twitter threads easier.",
    "version": "0.3",
    "manifest_version": 3,
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "\/content\/contentscript.js"
            ],
            "css": [
                "\/styles\/index.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "threadResponse.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ]
}