Rocketbot web automation

Rocketbot extension for automate main browser without use selenium

Vad är Rocketbot web automation?

Rocketbot web automation är en Chrome-tillägg utvecklad av Rocketbot, och dess huvudfunktion är "Rocketbot extension for automate main browser without use selenium".

Tilläggsskärmbilder

screenshot

Ladda ner Rocketbot web automation-förlängningens CRX-fil

Ladda ner Rocketbot web automation-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Now you can automate your browser with Rocketbot using this extension

How to use:
- Download the browser_automation module in our marketplace
- Run Server to connect Rocketbot with extension
- Execute module commands                    

Grundläggande Information om Tillägg

Namn Rocketbot web automation Rocketbot web automation
ID nphceendbkambfdfdnodkcennhkpckpl
Officiell webbadress https://chromewebstore.google.com/detail/rocketbot-web-automation/nphceendbkambfdfdnodkcennhkpckpl
Beskrivning Rocketbot extension for automate main browser without use selenium
Filstorlek 86.59 KB
Antal Installationer 120
Aktuell Version 1.0.0
Senast Uppdaterad 2020-12-03
Publiceringsdatum 2020-12-02
Utvecklare Rocketbot
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://rocketbot.co
Hjälpsida URL https://forum.rocketbot.co/
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rocketbot web automation",
    "description": "Rocketbot extension for automate main browser without use selenium",
    "version": "1.0.0",
    "manifest_version": 2,
    "author": "Nicolas Liendro y Danilo Toro",
    "browser_action": {
        "default_title": "Rocketbot",
        "default_icon": "img\/ISO_Rojo_128.png"
    },
    "icons": {
        "16": "img\/ISO_Rojo_128.png",
        "128": "img\/ISO_Rojo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "js\/content.js",
                "js\/html2canvas.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "js\/script.js",
        "js\/html2canvas.js",
        "chrome-extension:\/\/kmglbgiengedmgegmagckkdcnbjkelab\/js\/html2canvas.js"
    ],
    "permissions": [
        "activeTab",
        "background",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}