Mashup
Extension tool transform webpage to crawlify states
Mashupとは何ですか?
Mashupはcoayscueによって開発されたChromeの拡張機能で、その主な機能は「Extension tool transform webpage to crawlify states」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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:\/\/*\/*" ] } |