beABot

Become a javascript crawler bot (beta)

What is beABot?

beABot is a Chrome extension developed by https://williamnharvey.com, and its main feature is "Become a javascript crawler bot (beta)".

Extension Screenshots

screenshot

Download beABot Extension CRX File

Download beABot 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

                        Changes your actions to emulate a javascript crawler. Originally designed to test if a web scraping bot would be able to log into reddit.                    

Extension Basic Information

Name beABot beABot
ID obheiedhodboffaomefkclbnhmngjioa
Official URL https://chromewebstore.google.com/detail/beabot/obheiedhodboffaomefkclbnhmngjioa
Description Become a javascript crawler bot (beta)
File Size 51.2 KB
Installation Count 198
Current Version 1.0.3
Last Updated 2018-01-16
Publish Date 2018-01-16
Rating 3.67/5 Total 3 Ratings
Developer https://williamnharvey.com
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}