grabli
The web extension is intended for browser-based automation of processes on web pages and for executing custom scripts.
grabliคืออะไร?
grabli เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ninja team และคุณลักษณะหลักของมันคือ "The web extension is intended for browser-based automation of processes on web pages and for executing custom scripts."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย grabli
ดาวน์โหลดไฟล์ส่วนขยาย grabli ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Web extension is designed to automate processes on web pages and execute custom scripts. You can upload a file and use its contents for your own tasks. Go through a list, collect data and save them in CSV simply by running a custom script. Configure the automatic loading of a macro to any webpage on the Internet. Configure the execution of a macro on a schedule mode. Run a macro by pressing the "hot keys". You can write your own custom scripts or use the verified and safe macros created by the community. If you need a macro for daily tasks, such as getting the positions of your website in the search engine, getting new members with Facebook, LinkedIn groups or members from Instagram, Telegram or from any forum, then Grabli app will be useful to you. You can use one web extension for everything that now requires separate extensions - for data parsing, for changing the background to YouTube, for viewing the content of any page in the "clean view" form, and so on. Also you can use developed scripts for marketing aim. If you need to scale your tasks, you will be able to delegate tasks to operators.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | grabli |
ID | kchnokipjngmledlbbkkhaflcoocplgn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/grabli/kchnokipjngmledlbbkkhaflcoocplgn |
คำอธิบาย | The web extension is intended for browser-based automation of processes on web pages and for executing custom scripts. |
ขนาดไฟล์ | 1.49 MB |
จำนวนการติดตั้ง | 207 |
เวอร์ชันปัจจุบัน | 2.0.6 |
อัปเดตครั้งล่าสุด | 2021-03-08 |
วันที่เผยแพร่ | 2019-09-21 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | ninja team |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://grabli.app |
URL หน้าช่วยเหลือ | https://grabli.app |
URL หน้านโยบายความเป็นส่วนตัว | https://grabli.app/policy |
ภาษาที่รองรับ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "homepage_url": "https:\/\/grabli.app\/", "version": "2.0.6", "name": "__MSG_extName__", "short_name": "__MSG_extShortName__", "description": "__MSG_extDescription__", "manifest_version": 2, "author": "grabli developers", "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+Shift+O", "mac": "Alt+Shift+O", "chromeos": "Alt+Shift+O", "linux": "Alt+Shift+O" } } }, "icons": { "16": "icons\/button.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "browser-polyfill.js", "background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/button.png", "default_title": "Grabli", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "browser-polyfill.js", "content.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [ "storage", "*:\/\/*\/", "activeTab", "webNavigation", "webRequestBlocking", "webRequest", "notifications" ], "content_security_policy": "style-src 'self' 'unsafe-inline' data: blob:; script-src 'self' https:\/\/grabli.app; object-src 'self' 'unsafe-eval'; child-src 'self' 'unsafe-eval' data: blob:", "web_accessible_resources": [ "jquery-3.5.1.js", "hotkeys.js", "mainCore.js", "main.css", "images\/*.png", "images\/*.jpg" ], "minimum_chrome_version": "58" } |