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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة https://github.com/solobat/ihelpers.github.io/issues
عنوان صفحة سياسة الخصوصية 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}