Mashup
Extension tool transform webpage to crawlify states
Cos'è Mashup?
Mashup è un'estensione di Chrome sviluppata da coayscue, e la sua funzione principale è "Extension tool transform webpage to crawlify states".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mashup
Scarica i file di estensione Mashup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | dhncgflfkmflhloldkciigdfmnejbida |
URL Ufficiale | https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida |
Descrizione | Extension tool transform webpage to crawlify states |
Dimensione del File | 149 KB |
Conteggio Installazioni | 91 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2015-09-11 |
Data di Pubblicazione | 2015-09-11 |
Sviluppatore | coayscue |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://mashup-app.herokuapp.com |
Lingue Supportate | 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:\/\/*\/*" ] } |