Twitter Print Styles
Simple print styles for saving Twitter threads as PDFs.
Twitter Print Stylesคืออะไร?
Twitter Print Styles เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tannerhodges.com และคุณลักษณะหลักของมันคือ "Simple print styles for saving Twitter threads as PDFs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Print Styles
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |