Mashup
Extension tool transform webpage to crawlify states
Qu'est-ce que Mashup ?
Mashup est une extension Chrome développée par coayscue, et sa fonction principale est "Extension tool transform webpage to crawlify states".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mashup
Téléchargez les fichiers d'extension Mashup au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | dhncgflfkmflhloldkciigdfmnejbida |
URL Officiel | https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida |
Description | Extension tool transform webpage to crawlify states |
Taille du Fichier | 149 KB |
Nombre d'Installations | 91 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2015-09-11 |
Date de Publication | 2015-09-11 |
Développeur | coayscue |
Type de Paiement | free |
Site Web de l'Extension | http://mashup-app.herokuapp.com |
Langues Prises en Charge | 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:\/\/*\/*" ] } |