Mashup
Extension tool transform webpage to crawlify states
What is Mashup?
Mashup is a Chrome extension developed by coayscue, and its main feature is "Extension tool transform webpage to crawlify states".
Extension Screenshots
Download Mashup Extension CRX File
Download Mashup extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | dhncgflfkmflhloldkciigdfmnejbida |
Official URL | https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida |
Description | Extension tool transform webpage to crawlify states |
File Size | 149 KB |
Installation Count | 91 |
Current Version | 1.1 |
Last Updated | 2015-09-11 |
Publish Date | 2015-09-11 |
Developer | coayscue |
Payment Type | free |
Extension Website | http://mashup-app.herokuapp.com |
Supported Languages | 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:\/\/*\/*" ] } |