Twitter Capture
Capture Tweet for users and export with pdf document.
Twitter Captureคืออะไร?
Twitter Capture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andresspistatio และคุณลักษณะหลักของมันคือ "Capture Tweet for users and export with pdf document."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Capture
ดาวน์โหลดไฟล์ส่วนขยาย Twitter Capture ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jnkmebljcijjphggckiinogeenjmfiko |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/jnkmebljcijjphggckiinogeenjmfiko |
คำอธิบาย | Capture Tweet for users and export with pdf document. |
ขนาดไฟล์ | 732 KB |
จำนวนการติดตั้ง | 44 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2020-10-17 |
วันที่เผยแพร่ | 2020-10-07 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | andresspistatio |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } |