Twitter Capture
Capture Tweet for users and export with pdf document.
Twitter Capture क्या है?
Twitter Capture andresspistatio द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Capture Tweet for users and export with pdf document."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitter Capture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |