Maya Web Automation
This extension enables you to interact with your browser through the Maya app.
What is Maya Web Automation?
Maya Web Automation is a Chrome extension developed by humans, and its main feature is "This extension enables you to interact with your browser through the Maya app.".
Extension Screenshots
Download Maya Web Automation Extension CRX File
Download Maya Web Automation extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Maya Web Automation |
ID | glhdiigjjllhlahaipipmkfknldhbnob |
Official URL | https://chromewebstore.google.com/detail/maya-web-automation/glhdiigjjllhlahaipipmkfknldhbnob |
Description | This extension enables you to interact with your browser through the Maya app. |
File Size | 674 KB |
Installation Count | 25 |
Current Version | 1.0.1 |
Last Updated | 2022-07-04 |
Publish Date | 2021-05-12 |
Developer | humans |
[email protected] | |
Payment Type | free |
Extension Website | https://mayalabs.io |
Help Page URL | https://mayalabs.io/privacy |
Supported Languages | 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 } } |