Mashup

Extension tool transform webpage to crawlify states

Τι είναι το Mashup;

Το Mashup είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον coayscue, και η κύρια λειτουργία του είναι "Extension tool transform webpage to crawlify states".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Mashup

Λήψη αρχείων επέκτασης Mashup σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Mashup Mashup
ID dhncgflfkmflhloldkciigdfmnejbida
Επίσημο URL https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida
Περιγραφή Extension tool transform webpage to crawlify states
Μέγεθος Αρχείου 149 KB
Αριθμός Εγκαταστάσεων 91
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2015-09-11
Ημερομηνία Δημοσίευσης 2015-09-11
Προγραμματιστής coayscue
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://mashup-app.herokuapp.com
Υποστηριζόμενες Γλώσσες 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:\/\/*\/*"
    ]
}