beABot

Become a javascript crawler bot (beta)

Cos'è beABot?

beABot è un'estensione di Chrome sviluppata da https://williamnharvey.com, e la sua funzione principale è "Become a javascript crawler bot (beta)".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione beABot

Scarica i file di estensione beABot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome beABot beABot
ID obheiedhodboffaomefkclbnhmngjioa
URL Ufficiale https://chromewebstore.google.com/detail/beabot/obheiedhodboffaomefkclbnhmngjioa
Descrizione Become a javascript crawler bot (beta)
Dimensione del File 51.2 KB
Conteggio Installazioni 198
Versione Corrente 1.0.3
Ultimo Aggiornamento 2018-01-16
Data di Pubblicazione 2018-01-16
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore https://williamnharvey.com
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}