Maya Web Automation
This extension enables you to interact with your browser through the Maya app.
Maya Web Automationとは何ですか?
Maya Web Automationはhumansによって開発されたChromeの拡張機能で、その主な機能は「This extension enables you to interact with your browser through the Maya app.」です。
拡張機能のスクリーンショット
Maya Web Automation拡張機能のCRXファイルをダウンロード
Maya Web Automation拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This chrome extension is an aid to the Maya desktop app for browser automation. Users can use it to make custom automation workflows that will let them automate a webpage that the extension has been given permission to interact with.
拡張機能の基本情報
名前 | Maya Web Automation |
ID | glhdiigjjllhlahaipipmkfknldhbnob |
公式URL | https://chromewebstore.google.com/detail/maya-web-automation/glhdiigjjllhlahaipipmkfknldhbnob |
説明 | This extension enables you to interact with your browser through the Maya app. |
ファイルサイズ | 674 KB |
インストール数 | 25 |
現在のバージョン | 1.0.1 |
最終更新日 | 2022-07-04 |
公開日 | 2021-05-12 |
開発者 | humans |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://mayalabs.io |
ヘルプページのURL | https://mayalabs.io/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Maya Web Automation", "version": "1.0.1", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "This extension enables you to interact with your browser through the Maya app.", "homepage_url": "https:\/\/mayalabs.io", "short_name": "Maya Web Automation", "permissions": [ "storage", "nativeMessaging", "tabs", "bookmarks" ], "optional_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "externally_connectable": { "matches": [ "*:\/\/mayalabs.io\/*", "*:\/\/localhost\/*" ] }, "web_accessible_resources": [ "source\/views\/options.html", "views\/options.html", "options.html" ], "content_security_policy": "script-src 'self'; object-src 'self'", "author": "mayahq", "minimum_chrome_version": "49", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "default_title": "Maya", "chrome_style": false }, "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": true, "chrome_style": false }, "background": { "scripts": [ "js\/background.bundle.js" ], "persistent": true } } |