Rinkt recorder and player

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

Что такое Rinkt recorder and player?

Rinkt recorder and player - это расширение Chrome, разработанное Rinkt, и его основная функция - "Records and plays browser actions. Design your custom workflow using Rinkt Studio desktop application.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Rinkt recorder and player

Скачайте файлы расширений Rinkt recorder and player в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Rinkt recorder and player Rinkt recorder and player
ID mangkcjbeinidifakjpbbjlkipleldoj
Официальный URL https://chromewebstore.google.com/detail/rinkt-recorder-and-player/mangkcjbeinidifakjpbbjlkipleldoj
Описание Records and plays browser actions. Design your custom workflow using Rinkt Studio desktop application.
Размер файла 237 KB
Количество установок 83
Текущая Версия 2.0.7
Последнее Обновление 2023-05-25
Дата публикации 2020-06-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Rinkt
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.rinkt.com/
URL страницы помощи https://www.rinkt.com/contact
Поддерживаемые языки 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
}