Mashup
Extension tool transform webpage to crawlify states
什么是Mashup?
Mashup是由coayscue开发的Chrome扩展程序,该扩展的主要功能是“Extension tool transform webpage to crawlify states”。
扩展截图
下载Mashup扩展crx文件
下载Mashup扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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:\/\/*\/*" ] } |