Automator
Automate browser actions easily
Automator क्या है?
Automator root.dev.urandom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automate browser actions easily"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Automator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } |