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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |