iAutomator: automation/shortcuts

Browser Automation Productivity Tools

什麼是iAutomator: automation/shortcuts?

iAutomator: automation/shortcuts是由tomasy開發的Chrome擴展程式,該擴展的主要功能是“Browser Automation Productivity Tools”。

擴展截圖

screenshot
screenshot

下載iAutomator: automation/shortcuts擴展crx文件

下載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
官方網址 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}