Mashup
Extension tool transform webpage to crawlify states
Mashup란 무엇입니까?
Mashup은(는) coayscue에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension tool transform webpage to crawlify states"입니다.
확장 프로그램 스크린샷
Mashup 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Scrape websites! This developer tool allows developers to scrape, combine and customize data from websites. This chrome extension allows the user to select which elements on the webpage to scrape. The web app (mashup-app.herokuapp.com) then allows users to combine and customize the data. The data is re-crawled, customized, and returned each time a call to our api is made.
확장 프로그램 기본 정보
이름 | |
ID | dhncgflfkmflhloldkciigdfmnejbida |
공식 URL | https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida |
설명 | Extension tool transform webpage to crawlify states |
파일 크기 | 149 KB |
설치 횟수 | 91 |
현재 버전 | 1.1 |
최근 업데이트 | 2015-09-11 |
출시 날짜 | 2015-09-11 |
개발자 | coayscue |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://mashup-app.herokuapp.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "jquery.min.js", "background.js" ] }, "name": "Mashup", "description": "Extension tool transform webpage to crawlify states", "version": "1.1", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Nodemono" }, "content_scripts": [ { "js": [ "jquery.min.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "web_accessible_resources": [ "template\/*", "css\/style.css", "selectorgadget\/*", "*", "imgs\/back.png" ], "permissions": [ "tabs", "notifications", "activeTab", "https:\/\/*\/*", "http:\/\/*\/*" ] } |