Twitter Capture
Capture Tweet for users and export with pdf document.
Was ist Twitter Capture?
Twitter Capture ist eine Chrome-Erweiterung, die von andresspistatio entwickelt wurde, und ihr Hauptmerkmal ist "Capture Tweet for users and export with pdf document.".
Erweiterungsscreenshots
Twitter Capture-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitter Capture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | jnkmebljcijjphggckiinogeenjmfiko |
Offizielle URL | https://chrome.google.com/webstore/detail/jnkmebljcijjphggckiinogeenjmfiko |
Beschreibung | Capture Tweet for users and export with pdf document. |
Dateigröße | 732 KB |
Installationsanzahl | 44 |
Aktuelle Version | 1.1 |
Letztes Update | 2020-10-17 |
Veröffentlichungsdatum | 2020-10-07 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | andresspistatio |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |