Mashup

Extension tool transform webpage to crawlify states

Hvad er Mashup?

Mashup er en Chrome-udvidelse udviklet af coayscue, og dens hovedfunktion er "Extension tool transform webpage to crawlify states".

Udvidelsesskærmbilleder

screenshot

Download Mashup-udvidelses-CRX-fil

Download Mashup-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Mashup Mashup
ID dhncgflfkmflhloldkciigdfmnejbida
Officiel URL https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida
Beskrivelse Extension tool transform webpage to crawlify states
Filstørrelse 149 KB
Antal Installationer 91
Nuværende Version 1.1
Senest Opdateret 2015-09-11
Udgivelsesdato 2015-09-11
Udvikler coayscue
Betalingsmetode free
Udvidelseswebsted http://mashup-app.herokuapp.com
Understøttede Sprog 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:\/\/*\/*"
    ]
}