Twitter Print Styles
Simple print styles for saving Twitter threads as PDFs.
什么是Twitter Print Styles?
Twitter Print Styles是由https://tannerhodges.com开发的Chrome扩展程序,该扩展的主要功能是“Simple print styles for saving Twitter threads as PDFs.”。
扩展截图
下载Twitter Print Styles扩展crx文件
下载Twitter Print Styles扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
⭐️ Features • Default print styles (print-friendly colors, expand images, hide extra elements). • Link the first tweet's timestamp to the current URL (so you don't lose it in the PDF). • Click icon to load entire thread and print. • Click icon again to stop current task. 🤷♂️ Caveats • Does not support modals/popups. • Does not follow "Show this thread" links. • Only loads inline replies, not "More Tweets" or "Show more replies" at the very end of a thread. 👀 Alternatives • https://jikji.pro • https://threadreaderapp.com
扩展基本信息
名称 | Twitter Print Styles |
ID | bepilablapiogeghmjiopiaoikgdcgjo |
官方URL | https://chromewebstore.google.com/detail/twitter-print-styles/bepilablapiogeghmjiopiaoikgdcgjo |
简介 | Simple print styles for saving Twitter threads as PDFs. |
文件大小 | 12.34 KB |
安装次数 | 8,422 |
当前版本 | 2.1.5 |
更新时间 | 2023-07-02 |
上架时间 | 2018-01-12 |
评分 | 3.59/5 共17次评分 |
开发者 | https://tannerhodges.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/tannerhodges/twitter-print-styles |
帮助页面URL | https://github.com/tannerhodges/twitter-print-styles/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Print Styles", "version": "2.1.5", "description": "Simple print styles for saving Twitter threads as PDFs.", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "css": [ "index.css" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "icon-128.png" } } |