isheet
Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet
isheet란 무엇입니까?
isheet은(는) leopsidom에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet"입니다.
확장 프로그램 스크린샷
isheet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [ "*:\/\/*\/*" ] } ] } |