isheet
Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet
isheet क्या है?
isheet leopsidom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में isheet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
With this extension, it becomes easy to scrape data from web and convert it to an excel like sheet right on the page. The usage is very straightforward, just right click inside an html table, then click isheet from the dropdown menu; This will generate an excel like sheet at the bottom of page which you can resize by dragging the top edge of sheet, and you can do operations in the sheet such as copy / paste, sort, download, delete / insert rows / columns etc. You can expand or shrink the selection by clicking the + / - icons so you can get the content you need; And click the split and merge icons to further break down columns or reverse merging the columns;
एक्सटेंशन की मूल जानकारी
नाम | isheet |
ID | mglgkilcpipfamlcfpghglopplaicobn |
आधिकारिक URL | https://chromewebstore.google.com/detail/isheet/mglgkilcpipfamlcfpghglopplaicobn |
विवरण | Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet |
फ़ाइल का आकार | 1.65 MB |
स्थापना संख्या | 390 |
वर्तमान संस्करण | 2.4.0 |
अंतिम अपडेट | 2022-05-09 |
प्रकाशन तिथि | 2020-07-04 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | leopsidom |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "isheet", "description": "Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet", "version": "2.4.0", "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "css\/fontawesome.min.css", "css\/regular.min.css", "css\/solid.min.css", "css\/material-icons.css" ], "js": [ "packages\/jsuites\/jsuites.js", "packages\/jexcel\/jexcel.js", "main.js" ] } ], "action": { "default_icon": "icon19.png", "default_popup": "menu.html" }, "permissions": [ "activeTab", "contextMenus" ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "style.css", "*.png", "packages\/*\/*.css", "css\/*", "fonts\/*", "fonts\/fa-webfonts\/*" ], "matches": [ "*:\/\/*\/*" ] } ] } |