Automator
Automate browser actions easily
Automatorとは何ですか?
Automatorはroot.dev.urandomによって開発されたChromeの拡張機能で、その主な機能は「Automate browser actions easily」です。
拡張機能のスクリーンショット
Automator拡張機能のCRXファイルをダウンロード
Automator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extension for easy web applications testing. Like Selenium or WebDriver it allows to interact with data on loaded pages using CLI scripts or CI processes. Usage is very simple - install this extension, register on our website, setup your unique token and then you can do what you want! Important notice: We active develop this extension right now. So, if you want - we are open for your contribution!
拡張機能の基本情報
名前 | Automator |
ID | bommlebcdbhpnlmjdokpdcongnpokkjc |
公式URL | https://chromewebstore.google.com/detail/automator/bommlebcdbhpnlmjdokpdcongnpokkjc |
説明 | Automate browser actions easily |
ファイルサイズ | 69.53 KB |
インストール数 | 227 |
現在のバージョン | 1.0.1 |
最終更新日 | 2020-12-01 |
公開日 | 2020-08-20 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | root.dev.urandom |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Automator", "short_name": "automator-browser-extension", "description": "Automate browser actions easily", "author": "awesome-development", "version": "1.0.1", "icons": { "16": "assets\/img\/icons\/16x16.png", "48": "assets\/img\/icons\/48x48.png", "128": "assets\/img\/icons\/128x128.png" }, "browser_action": { "default_icon": "assets\/img\/icons\/48x48.png", "default_popup": "popup\/popup.html", "default_title": "Browser automator" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "inject.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_start" } ], "minimum_chrome_version": "49.0", "permissions": [ "*:\/\/*\/*", "storage", "tabs" ] } |