iAutomator: automation/shortcuts

Browser Automation Productivity Tools

Was ist iAutomator: automation/shortcuts?

iAutomator: automation/shortcuts ist eine Chrome-Erweiterung, die von tomasy entwickelt wurde, und ihr Hauptmerkmal ist "Browser Automation Productivity Tools".

Erweiterungsscreenshots

screenshot
screenshot

iAutomator: automation/shortcuts-Erweiterungs-CRX-Datei herunterladen

Laden Sie iAutomator: automation/shortcuts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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;                    

Grundlegende Informationen zur Erweiterung

Name iAutomator: automation/shortcuts iAutomator: automation/shortcuts
ID hcnekoladldejmeindnhpjkfhjadcick
Offizielle URL https://chromewebstore.google.com/detail/iautomator-automationshor/hcnekoladldejmeindnhpjkfhjadcick
Beschreibung Browser Automation Productivity Tools
Dateigröße 588 KB
Installationsanzahl 223
Aktuelle Version 2.6.0
Letztes Update 2023-10-19
Veröffentlichungsdatum 2020-06-28
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler tomasy
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://iautomator.xyz/
Hilfeseite URL https://github.com/solobat/ihelpers.github.io/issues
URL der Datenschutzrichtlinien-Seite https://iautomator.xyz/privacy
Unterstützte Sprachen 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}