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 |
官方網址 | 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" } } |