Thread Reader
Read Twitter threads easily and effectively
什么是Thread Reader?
Thread Reader是由https://devapt.com开发的Chrome扩展程序,该扩展的主要功能是“Read Twitter threads easily and effectively”。
扩展截图
下载Thread Reader扩展crx文件
下载Thread Reader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
━━━━━━━━━━»•» 𝗧𝗵𝗿𝗲𝗮𝗱 𝗿𝗲𝗮𝗱𝗲𝗿 «•«━━━━━━━━━━ 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 |
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" } |