Chromium browser automation
Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play
Chromium browser automation क्या है?
Chromium browser automation https://chrome-automation.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chromium browser automation एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
1. CBA gives ability to setup step-by-step code injections from the Extensions popup interface. 2. Record user interactions while navigating web pages (filling forms, clicking buttons, hyperlinks and smart algorithms for DOM element path calculations). 3. Save Projects in your browser's local storage. 4. Step by step code injection. 5. Import, export and share projects with collaborators. 6. Extensions ready functions now available. 7. Implement useful Extension placeholders. 8. Write your own code to access the web page's DOM. 9. And much much more... Github: https://github.com/browser-automation/cba Issues and feature requests: https://github.com/browser-automation/cba/issues Privacy Policy: https://chrome-automation.com/privacy Contact email: [email protected]
एक्सटेंशन की मूल जानकारी
नाम | Chromium browser automation |
ID | jmbmjnojfkcohdpkpjmeeijckfbebbon |
आधिकारिक URL | https://chromewebstore.google.com/detail/chromium-browser-automati/jmbmjnojfkcohdpkpjmeeijckfbebbon |
विवरण | Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play |
फ़ाइल का आकार | 130 KB |
स्थापना संख्या | 45,224 |
वर्तमान संस्करण | 9.1.0 |
अंतिम अपडेट | 2021-04-03 |
प्रकाशन तिथि | 2019-05-07 |
रेटिंग | 3.47/5 कुल 189 रेटिंग्स |
डेवलपर | https://chrome-automation.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://chrome-automation.com/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "background": { "page": "back.html" }, "browser_action": { "default_icon": "logo.png", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "js": [ "js\/browser-polyfill.min.js", "js\/jquery-1.7.2.min.js", "js\/cs.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'", "description": "Extension for automating chromium browser, Create project -> Record -> Edit Automation -> Manage -> Play", "icons": { "128": "css\/icons\/128x128.png", "16": "css\/icons\/16x16.png", "48": "css\/icons\/48x48.png" }, "manifest_version": 2, "name": "Chromium browser automation", "options_page": "options.html", "permissions": [ "cookies", "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "storage" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "9.1.0" } |