Mashup

Extension tool transform webpage to crawlify states

什麼是Mashup?

Mashup是由coayscue開發的Chrome擴展程式,該擴展的主要功能是“Extension tool transform webpage to crawlify states”。

擴展截圖

screenshot

下載Mashup擴展crx文件

下載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
官方網址 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:\/\/*\/*"
    ]
}