Twitter Capture
Capture Tweet for users and export with pdf document.
What is Twitter Capture?
Twitter Capture is a Chrome extension developed by andresspistatio, and its main feature is "Capture Tweet for users and export with pdf document.".
Extension Screenshots
Download Twitter Capture Extension CRX File
Download Twitter Capture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | jnkmebljcijjphggckiinogeenjmfiko |
Official URL | https://chrome.google.com/webstore/detail/jnkmebljcijjphggckiinogeenjmfiko |
Description | Capture Tweet for users and export with pdf document. |
File Size | 732 KB |
Installation Count | 44 |
Current Version | 1.1 |
Last Updated | 2020-10-17 |
Publish Date | 2020-10-07 |
Rating | 5.00/5 Total 4 Ratings |
Developer | andresspistatio |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |