Rinkt recorder and player

Records and plays browser actions. Design your custom workflow using Rinkt Studio desktop application.

¿Qué es Rinkt recorder and player?

Rinkt recorder and player es una extensión de Chrome desarrollada por Rinkt, y su función principal es "Records and plays browser actions. Design your custom workflow using Rinkt Studio desktop application.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Rinkt recorder and player

Descarga archivos de extensión Rinkt recorder and player en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Records and replays web browser actions using Rinkt desktop application. 
Rinkt desktop application is used to build custom workflows out of the recorded actions and plays the recorded web actions using this extension                    

Información Básica de la Extensión

Nombre Rinkt recorder and player Rinkt recorder and player
ID mangkcjbeinidifakjpbbjlkipleldoj
URL Oficial https://chromewebstore.google.com/detail/rinkt-recorder-and-player/mangkcjbeinidifakjpbbjlkipleldoj
Descripción Records and plays browser actions. Design your custom workflow using Rinkt Studio desktop application.
Tamaño del Archivo 237 KB
Cantidad de Instalaciones 83
Versión Actual 2.0.7
Última Actualización 2023-05-25
Fecha de Publicación 2020-06-27
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Rinkt
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.rinkt.com/
URL de la Página de Ayuda https://www.rinkt.com/contact
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Rinkt recorder and player",
    "description": "Records and plays browser actions. Design your custom workflow using Rinkt Studio desktop application.",
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "author": "rinkt",
    "version": "2.0.7",
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png"
        },
        "default_popup": "popup.html",
        "default_title": "Rinkt recorder and player"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/startup_script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "js\/serviceWorker.js"
    },
    "permissions": [
        "nativeMessaging",
        "tabs",
        "webNavigation",
        "storage",
        "debugger"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/embedded.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "offline_enabled": true
}