beABot
Become a javascript crawler bot (beta)
Wat is beABot?
beABot is een Chrome-extensie ontwikkeld door https://williamnharvey.com, en de belangrijkste functie is "Become a javascript crawler bot (beta)".
Extensie Screenshots
Download het CRX-bestand van de extensie beABot
Download beABot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Changes your actions to emulate a javascript crawler. Originally designed to test if a web scraping bot would be able to log into reddit. Basisinformatie over de Extensie
| Naam | |
| ID | obheiedhodboffaomefkclbnhmngjioa |
| Officiële URL | https://chromewebstore.google.com/detail/beabot/obheiedhodboffaomefkclbnhmngjioa |
| Beschrijving | Become a javascript crawler bot (beta) |
| Bestandsgrootte | 51.2 KB |
| Aantal Installaties | 198 |
| Huidige Versie | 1.0.3 |
| Laatst Bijgewerkt | 2018-01-16 |
| Publicatiedatum | 2018-01-16 |
| Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | https://williamnharvey.com |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |