Mashup
Extension tool transform webpage to crawlify states
Mashup क्या है?
Mashup coayscue द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension tool transform webpage to crawlify states"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mashup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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:\/\/*\/*" ] } |