Wild Spider
web pages are crawled by being loaded into browser using multiple tabs parallelly
Wild Spider क्या है?
Wild Spider Xuan Wu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "web pages are crawled by being loaded into browser using multiple tabs parallelly"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wild Spider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
WATCH OUT: more tabs you use, more computer resources (CPU, memory) will be used, and each page costs a bit disk to save the content (in IndexedDb, accessible from extensions -> Inspect views: background page). The "spider" works in this way: 1) The current url is used as the starting point, and it's loaded again in a new tab. 2) After this page is loaded, fetch all the links on the page. 3) Get all the links on the page, including relative urls. 4) Open the extracted link parallelly in all the tabs used (by default 3, set in eventPage). 5) repeat 2-4 All source code at: https://github.com/nobodxbodon/ChromeCrawlerWildSpider
एक्सटेंशन की मूल जानकारी
नाम | Wild Spider |
ID | aanpchnfojihjddlocpgoekffmjkhbbe |
आधिकारिक URL | https://chromewebstore.google.com/detail/wild-spider/aanpchnfojihjddlocpgoekffmjkhbbe |
विवरण | web pages are crawled by being loaded into browser using multiple tabs parallelly |
फ़ाइल का आकार | 121 KB |
स्थापना संख्या | 44 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2019-03-08 |
प्रकाशन तिथि | 2019-03-08 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | Xuan Wu |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/nobodxbodon/ChromeCrawlerWildSpider |
सहायता पृष्ठ URL | https://github.com/nobodxbodon/ChromeCrawlerWildSpider/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wild Spider", "short_name": "demo web crawler that's still in experimenting", "description": "web pages are crawled by being loaded into browser using multiple tabs parallelly", "version": "0.0.3", "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "activeTab", "webNavigation" ], "background": { "scripts": [ "Dexie.js", "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "htmlparser2.js", "content.js" ] } ], "manifest_version": 2 } |