Fun Crawler
Fun Crawler aimlessly crawls your website by clicking on clinks
What is Fun Crawler?
Fun Crawler is a Chrome extension developed by Brett Sykes, and its main feature is "Fun Crawler aimlessly crawls your website by clicking on clinks".
Extension Screenshots
Download Fun Crawler Extension CRX File
Download Fun Crawler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
An in-Chrome web crawler that aimlessly clicks on links on your website.
Extension Basic Information
Name | Fun Crawler |
ID | didijflcofghegahfamjajdememegipg |
Official URL | https://chromewebstore.google.com/detail/fun-crawler/didijflcofghegahfamjajdememegipg |
Description | Fun Crawler aimlessly crawls your website by clicking on clinks |
File Size | 14.91 KB |
Installation Count | 74 |
Current Version | 0.0.5 |
Last Updated | 2016-06-19 |
Publish Date | 2016-06-19 |
Rating | 2.33/5 Total 3 Ratings |
Developer | Brett Sykes |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bretts/fun-crawler |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fun Crawler", "version": "0.0.5", "manifest_version": 2, "description": "Fun Crawler aimlessly crawls your website by clicking on clinks", "icons": { "16": "icons\/16x16.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "browser_action": { "default_icon": { "19": "icons\/19x19.png", "38": "icons\/38x38.png" }, "default_title": "Fun Crawler", "default_popup": "browseraction\/popup.html" }, "background": { "scripts": [ "funCrawler.js", "background.js" ], "persistent": true }, "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ] } |