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:\/\/*\/*"
    ]
}