iAutomator: automation/shortcuts

Browser Automation Productivity Tools

Wat is iAutomator: automation/shortcuts?

iAutomator: automation/shortcuts is een Chrome-extensie ontwikkeld door tomasy, en de belangrijkste functie is "Browser Automation Productivity Tools".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie iAutomator: automation/shortcuts

Download iAutomator: automation/shortcuts-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

                        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;                    

Basisinformatie over de Extensie

Naam iAutomator: automation/shortcuts iAutomator: automation/shortcuts
ID hcnekoladldejmeindnhpjkfhjadcick
Officiële URL https://chromewebstore.google.com/detail/iautomator-automationshor/hcnekoladldejmeindnhpjkfhjadcick
Beschrijving Browser Automation Productivity Tools
Bestandsgrootte 588 KB
Aantal Installaties 223
Huidige Versie 2.6.0
Laatst Bijgewerkt 2023-10-19
Publicatiedatum 2020-06-28
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar tomasy
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://iautomator.xyz/
Help Pagina-URL https://github.com/solobat/ihelpers.github.io/issues
URL van de Privacybeleid Pagina https://iautomator.xyz/privacy
Ondersteunde Talen 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}