Twitter Capture
Capture Tweet for users and export with pdf document.
什麼是Twitter Capture?
Twitter Capture是由andresspistatio開發的Chrome擴展程式,該擴展的主要功能是“Capture Tweet for users and export with pdf document.”。
擴展截圖
下載Twitter Capture擴展crx文件
下載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 |
官方網址 | 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" ] } |