beABot
Become a javascript crawler bot (beta)
什么是beABot?
beABot是由https://williamnharvey.com开发的Chrome扩展程序,该扩展的主要功能是“Become a javascript crawler bot (beta)”。
扩展截图
下载beABot扩展crx文件
下载beABot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Changes your actions to emulate a javascript crawler. Originally designed to test if a web scraping bot would be able to log into reddit. 扩展基本信息
| 名称 | |
| ID | obheiedhodboffaomefkclbnhmngjioa |
| 官方URL | https://chromewebstore.google.com/detail/beabot/obheiedhodboffaomefkclbnhmngjioa |
| 简介 | Become a javascript crawler bot (beta) |
| 文件大小 | 51.2 KB |
| 安装次数 | 198 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2018-01-16 |
| 上架时间 | 2018-01-16 |
| 评分 | 3.67/5 共3次评分 |
| 开发者 | https://williamnharvey.com |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "beABot",
"version": "1.0.3",
"author": "Will Harvey",
"description": "Become a javascript crawler bot (beta)",
"manifest_version": 2,
"browser_action": {
"default_title": "beABot",
"default_popup": "popup.html",
"default_icon": "assets\/williamnharvey.png"
},
"icons": {
"16": "assets\/williamnharvey.png",
"48": "assets\/williamnharvey.png",
"128": "assets\/williamnharvey.png"
},
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"assets\/jquery-3.2.1.min.js",
"scripts\/contentscript.js"
]
}
]
} | |