iAutomator: automation/shortcuts

Browser Automation Productivity Tools

Cos'è iAutomator: automation/shortcuts?

iAutomator: automation/shortcuts è un'estensione di Chrome sviluppata da tomasy, e la sua funzione principale è "Browser Automation Productivity Tools".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione iAutomator: automation/shortcuts

Scarica i file di estensione iAutomator: automation/shortcuts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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;                    

Informazioni di Base sull'Estensione

Nome iAutomator: automation/shortcuts iAutomator: automation/shortcuts
ID hcnekoladldejmeindnhpjkfhjadcick
URL Ufficiale https://chromewebstore.google.com/detail/iautomator-automationshor/hcnekoladldejmeindnhpjkfhjadcick
Descrizione Browser Automation Productivity Tools
Dimensione del File 588 KB
Conteggio Installazioni 223
Versione Corrente 2.6.0
Ultimo Aggiornamento 2023-10-19
Data di Pubblicazione 2020-06-28
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore tomasy
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://iautomator.xyz/
URL della Pagina di Aiuto https://github.com/solobat/ihelpers.github.io/issues
URL della Pagina della Politica sulla Privacy https://iautomator.xyz/privacy
Lingue Supportate 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}