Mashup

Extension tool transform webpage to crawlify states

Wat is Mashup?

Mashup is een Chrome-extensie ontwikkeld door coayscue, en de belangrijkste functie is "Extension tool transform webpage to crawlify states".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mashup

Download Mashup-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Mashup Mashup
ID dhncgflfkmflhloldkciigdfmnejbida
Officiële URL https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida
Beschrijving Extension tool transform webpage to crawlify states
Bestandsgrootte 149 KB
Aantal Installaties 91
Huidige Versie 1.1
Laatst Bijgewerkt 2015-09-11
Publicatiedatum 2015-09-11
Ontwikkelaar coayscue
Betalingswijze free
Extensiewebsite http://mashup-app.herokuapp.com
Ondersteunde Talen 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:\/\/*\/*"
    ]
}