Mashup
Extension tool transform webpage to crawlify states
Mashupคืออะไร?
Mashup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย coayscue และคุณลักษณะหลักของมันคือ "Extension tool transform webpage to crawlify states"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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:\/\/*\/*" ] } |