iAutomator: automation/shortcuts

Browser Automation Productivity Tools

Что такое iAutomator: automation/shortcuts?

iAutomator: automation/shortcuts - это расширение Chrome, разработанное tomasy, и его основная функция - "Browser Automation Productivity Tools".

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

screenshot
screenshot

Скачать файл CRX расширения iAutomator: automation/shortcuts

Скачайте файлы расширений iAutomator: automation/shortcuts в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Built-in common page operations, such as Read Mode, Full Screen/Kill an Element, Download Images/Videos, Code Copy, Bookmark, Scroll etc., support action recording and action automation.

update: v2.6.0
App rename;
Optimize Attributes action;
Fix bugs;                    

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

Название iAutomator: automation/shortcuts iAutomator: automation/shortcuts
ID hcnekoladldejmeindnhpjkfhjadcick
Официальный URL https://chromewebstore.google.com/detail/iautomator-automationshor/hcnekoladldejmeindnhpjkfhjadcick
Описание Browser Automation Productivity Tools
Размер файла 588 KB
Количество установок 223
Текущая Версия 2.6.0
Последнее Обновление 2023-10-19
Дата публикации 2020-06-28
Рейтинг 5.00/5 Всего 3 оценок
Разработчик tomasy
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://iautomator.xyz/
URL страницы помощи https://github.com/solobat/ihelpers.github.io/issues
URL страницы политики конфиденциальности https://iautomator.xyz/privacy
Поддерживаемые языки en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "version": "2.6.0",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "run_at": "document_start",
            "css": [
                "assets\/css\/contentStyle.chunk.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "notifications"
    ],
    "optional_permissions": [
        "background",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "img\/*.png",
                "icon16.png",
                "icon48.png",
                "src\/pages\/helper\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}