Mashup
Extension tool transform webpage to crawlify states
Was ist Mashup?
Mashup ist eine Chrome-Erweiterung, die von coayscue entwickelt wurde, und ihr Hauptmerkmal ist "Extension tool transform webpage to crawlify states".
Erweiterungsscreenshots
Mashup-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mashup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | dhncgflfkmflhloldkciigdfmnejbida |
Offizielle URL | https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida |
Beschreibung | Extension tool transform webpage to crawlify states |
Dateigröße | 149 KB |
Installationsanzahl | 91 |
Aktuelle Version | 1.1 |
Letztes Update | 2015-09-11 |
Veröffentlichungsdatum | 2015-09-11 |
Entwickler | coayscue |
Zahlungsart | free |
Erweiterungswebsite | http://mashup-app.herokuapp.com |
Unterstützte Sprachen | 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:\/\/*\/*" ] } |