Auto Shutdown
Executes a system-level command to shut down, hibernate or standby your operating system when all downloads are finished
Auto Shutdownคืออะไร?
Auto Shutdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MeryDev และคุณลักษณะหลักของมันคือ "Executes a system-level command to shut down, hibernate or standby your operating system when all downloads are finished"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Shutdown
ดาวน์โหลดไฟล์ส่วนขยาย Auto Shutdown ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Auto Shutdown extension executes a custom OS-level command when all downloading jobs are finished. This extension can be used to turn off the user's computer, hibernate it, or even run a custom command like playing a music song using a desktop application! Note that as of version 0.1.5, the extension keeps the system awake while the extension is enabled and there are active downloading jobs. This causes the system to not to go to the hibernate state. You can disable this feature on the options page. For this extension to work, a native messaging application needs to be installed. For more info please visit https://add0n.com/auto-shutdown.html To report bugs use: https://github.com/andy-portmen/auto-shutdown version 0.1.2: It is now possible to ask the extension to close the shutdown window (countdown window) when an external command is executed version 0.1.4: Keep the shutdown window on top (can be disabled from the options page)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Auto Shutdown |
ID | gkmonffckeeffppchajngpdakfppalfo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/auto-shutdown/gkmonffckeeffppchajngpdakfppalfo |
คำอธิบาย | Executes a system-level command to shut down, hibernate or standby your operating system when all downloads are finished |
ขนาดไฟล์ | 96.07 KB |
จำนวนการติดตั้ง | 7,179 |
เวอร์ชันปัจจุบัน | 0.1.8 |
อัปเดตครั้งล่าสุด | 2020-12-21 |
วันที่เผยแพร่ | 2020-03-21 |
คะแนน | 3.08/5 รวมทั้งหมด 12 คะแนน |
ผู้พัฒนา | MeryDev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://add0n.com/auto-shutdown.html |
URL หน้าช่วยเหลือ | http://add0n.com/auto-shutdown.html |
URL หน้านโยบายความเป็นส่วนตัว | https://add0n.com/policies/mery.dev.txt |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.8", "name": "Auto Shutdown", "description": "Executes a system-level command to shut down, hibernate or standby your operating system when all downloads are finished", "permissions": [ "storage", "nativeMessaging", "downloads", "power" ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "data\/icons\/16.png", "19": "data\/icons\/19.png", "32": "data\/icons\/32.png", "38": "data\/icons\/38.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "browser_action": [], "homepage_url": "https:\/\/add0n.com\/auto-shutdown.html", "options_ui": { "page": "data\/options\/index.html", "chrome_style": true } } |