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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
⭐️ 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" } } |