Mashup

Extension tool transform webpage to crawlify states

Mashup là gì?

Mashup là một tiện ích mở rộng Chrome được phát triển bởi coayscue, và tính năng chính của nó là "Extension tool transform webpage to crawlify states".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mashup

Tải xuống các tệp mở rộng Mashup dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mashup Mashup
ID dhncgflfkmflhloldkciigdfmnejbida
URL Chính Thức https://chrome.google.com/webstore/detail/mashup/dhncgflfkmflhloldkciigdfmnejbida
Mô tả Extension tool transform webpage to crawlify states
Kích Thước Tệp 149 KB
Số Lần Cài Đặt 91
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-09-11
Ngày Phát Hành 2015-09-11
Nhà Phát Triển coayscue
Loại Thanh Toán free
Trang Web Mở Rộng http://mashup-app.herokuapp.com
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}