Automatic Actions Management
This extension will able to run predefined user events.
Automatic Actions Managementคืออะไร?
Automatic Actions Management เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.atandrastoth.co.uk และคุณลักษณะหลักของมันคือ "This extension will able to run predefined user events."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Automatic Actions Management
ดาวน์โหลดไฟล์ส่วนขยาย Automatic Actions Management ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Automatic Actions Management This chrome extension will able to run predefined user events. Version ---- 1.0.2 Example usage ---- Cookie accepter: - Open the website where you wish to use AAM - Click right mouse button on the acceptor of the cookies. - Select 'Addition to the AAM (Simple)' item from context menu list. - The extension has created the 'Action' in the background with default settings. - if you want to view or to modify the settings, click on AAM icon on top right corner of the browser. - When popup window opens, click AAM setting button. - Settings tab opens. Settings tab table columns: - Target URL: it is a target website url where you want to activate AAM - Selector Or Script: selected item full DOM path Or script Filename* - Document state: That status of the document, when you want to launch AAM (Dom content loaded or window loaded) - Event type: click, remove or script (inject) - Repeat: repeat count - Timeout (ms): repeat timeouts - On-Off: enable, disable - Remove: delete row *created automatically if selected event is injected and clicked into 'Selector Or Script' named cell. - Script inject mode Special Visual selection: - Open the website where you wish to use AAM - Click right mouse button on the acceptor of the cookies. - Select 'Addition to the AAM (Visual)' item from context menu list. Hold right ALT Key and press: - w: select parent - s: select first children - d: select next sibling - a: select prev sibling - e: add to AAM - q: quit Author: Tóth András --- http://atandrastoth.co.uk/ 2016-03-16
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ecadnakadjenocjgahleimgikoopdoag |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/automatic-actions-managem/ecadnakadjenocjgahleimgikoopdoag |
คำอธิบาย | This extension will able to run predefined user events. |
ขนาดไฟล์ | 1.93 MB |
จำนวนการติดตั้ง | 772 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2016-03-24 |
วันที่เผยแพร่ | 2016-03-24 |
คะแนน | 3.00/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | http://www.atandrastoth.co.uk |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "T\u00f3th Andr\u00e1s", "name": "Automatic Actions Management", "short_name": "AAM", "description": "This extension will able to run predefined user events.", "version": "1.2", "options_page": "options.html", "browser_action": { "default_icon": "css\/images\/icon48.png", "default_popup": "popup.html" }, "icons": { "16": "css\/images\/icon16.png", "48": "css\/images\/icon48.png", "128": "css\/images\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "background": { "page": "background.html" }, "permissions": [ "tabs", " |