Fun Crawler
Fun Crawler aimlessly crawls your website by clicking on clinks
什么是Fun Crawler?
Fun Crawler是由Brett Sykes开发的Chrome扩展程序,该扩展的主要功能是“Fun Crawler aimlessly crawls your website by clicking on clinks”。
扩展截图
下载Fun Crawler扩展crx文件
下载Fun Crawler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An in-Chrome web crawler that aimlessly clicks on links on your website.
扩展基本信息
名称 | Fun Crawler |
ID | didijflcofghegahfamjajdememegipg |
官方URL | https://chromewebstore.google.com/detail/fun-crawler/didijflcofghegahfamjajdememegipg |
简介 | Fun Crawler aimlessly crawls your website by clicking on clinks |
文件大小 | 14.91 KB |
安装次数 | 74 |
当前版本 | 0.0.5 |
更新时间 | 2016-06-19 |
上架时间 | 2016-06-19 |
评分 | 2.33/5 共3次评分 |
开发者 | Brett Sykes |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/bretts/fun-crawler |
支持的语言 | 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" ] } ] } |