Thread Reader

Read Twitter threads easily and effectively

Thread Reader란 무엇입니까?

Thread Reader은(는) https://devapt.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read Twitter threads easily and effectively"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Thread Reader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ━━━━━━━━━━»•» 𝗧𝗵𝗿𝗲𝗮𝗱 𝗿𝗲𝗮𝗱𝗲𝗿 «•«━━━━━━━━━━

Thread reader helps you to read Twitter threads like an article without distraction. 

To use thread reader extension, just open any tweet especially a thread and click the extension icon and that's it you can find the text in a scrollable box where you can read all the tweets of a thread easily.

You can copy all the text of the thread with one click and that can be saved on your favorite note taking app or publish it as an article on your blog.

𝗧𝗵𝗶𝗻𝗴𝘀 𝘁𝗼 𝗻𝗼𝘁𝗲:
1. Twitter threads of past 7 days can only be fetched.
2. The last five tweets/threads' text will be stored locally so you can fetch them quickly.
3. Only the images in the first tweet are displayed.

If you liked this extension you can support me by buying a coffee. This helps to keep updating and developing more such interesting tools. 

🥤 𝗕𝘂𝘆 𝗺𝗲 𝗮 𝗰𝗼𝗳𝗳𝗲𝗲 → https://www.buymeacoffee.com/basharath                    

확장 프로그램 기본 정보

이름 Thread Reader Thread Reader
ID hjepbdajiiflfinpefagdanephmgajnh
공식 URL https://chromewebstore.google.com/detail/thread-reader/hjepbdajiiflfinpefagdanephmgajnh
설명 Read Twitter threads easily and effectively
파일 크기 15.25 KB
설치 횟수 1,000
현재 버전 0.0.1
최근 업데이트 2022-05-10
출시 날짜 2022-04-18
평점 3.83/5 총 6 개의 평점
개발자 https://devapt.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://devapt.com/
개인정보 보호 정책 페이지 URL https://basharath.notion.site/basharath/Privacy-policy-f883e35b01194f22874696119dac4f44
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Thread Reader",
    "version": "0.0.1",
    "description": "Read Twitter threads easily and effectively",
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": "images\/threader.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/threader.png",
        "48": "images\/threader.png",
        "128": "images\/threader.png"
    },
    "short_name": "Threader"
}