Twitter Capture
Capture Tweet for users and export with pdf document.
Twitter Capture là gì?
Twitter Capture là một tiện ích mở rộng Chrome được phát triển bởi andresspistatio, và tính năng chính của nó là "Capture Tweet for users and export with pdf document.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitter Capture
Tải xuống các tệp mở rộng Twitter Capture dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This tool is for capturing tweets. It automatically captures your tweets so that you don't miss any useful tweets and you can download them in PDF format.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jnkmebljcijjphggckiinogeenjmfiko |
URL Chính Thức | https://chrome.google.com/webstore/detail/jnkmebljcijjphggckiinogeenjmfiko |
Mô tả | Capture Tweet for users and export with pdf document. |
Kích Thước Tệp | 732 KB |
Số Lần Cài Đặt | 44 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2020-10-17 |
Ngày Phát Hành | 2020-10-07 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | andresspistatio |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Capture", "description": "Capture Tweet for users and export with pdf document.", "version": "1.1", "permissions": [ "tabs", "storage" ], "browser_action": { "default_title": "Twitter Capture.", "default_icon": { "16": "resources\/images\/icon.png", "32": "resources\/images\/icon.png", "48": "resources\/images\/icon.png", "128": "resources\/images\/icon.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "icons": { "16": "resources\/images\/icon.png", "32": "resources\/images\/icon.png", "48": "resources\/images\/icon.png", "128": "resources\/images\/icon.png" }, "manifest_version": 2, "content_scripts": [ { "all_frames": false, "js": [ "resources\/jquery\/jquery.js", "resources\/dom-to-image.min.js", "resources\/jsPDF\/jspdf.min.js", "contentScript.js" ], "matches": [ "https:\/\/twitter.com\/search?q=from:*%20since:*%20until:*&src=typed_query&f=live" ] } ], "web_accessible_resources": [ "resources\/injection.css" ] } |