Table Scrape
Scrape from tables.
Table Scrape क्या है?
Table Scrape https://claycodes.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scrape from tables."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Table Scrape एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Scrape data to a CSV from paginated tables using a button labeled with "next". Github source https://github.com/GoogleChromeLabs/table-scrape.git
एक्सटेंशन की मूल जानकारी
नाम | Table Scrape |
ID | ocglnchcpdjocppfepejjddgieoodaep |
आधिकारिक URL | https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep |
विवरण | Scrape from tables. |
फ़ाइल का आकार | 44.66 KB |
स्थापना संख्या | 169 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2023-04-14 |
प्रकाशन तिथि | 2023-04-05 |
डेवलपर | https://claycodes.org |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.claycodes.org/google-add-onsextensions/table-scrape |
सहायता पृष्ठ URL | https://www.claycodes.org/google-add-onsextensions/table-scrape |
गोपनीयता नीति पृष्ठ URL | https://www.claycodes.org/home/privacy-policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Table Scrape", "version": "0.0.2", "author": "Clay Smith", "short_name": "Table Scrape", "default_locale": "en", "description": "Scrape from tables.", "icons": { "19": "images\/19.png", "32": "images\/32.png", "38": "images\/38.png", "36": "images\/36.png", "64": "images\/64.png", "128": "images\/128.png" }, "permissions": [ "storage", "webNavigation" ], "host_permissions": [ "https:\/\/*\/*" ], "action": { "default_icon": { "19": "images\/19.png", "38": "images\/38.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/*\/*" ], "exclude_matches": [], "js": [ "contentscript.js" ] } ], "background": { "service_worker": "background.js" } } |