Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

Auto Shutdown Extensionคืออะไร?

Auto Shutdown Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย auto.shutdown.extension และคุณลักษณะหลักของมันคือ "Small and simple extension for automatic computer shutdown"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Shutdown Extension

ดาวน์โหลดไฟล์ส่วนขยาย Auto Shutdown Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        You want to shutdown you computer automatically? This is a Chrome extension for you. Extremely easy to use with available options:

 - Video player: schedule shutdown at specific point in video
 - Timed: shutdown at specific time
 - Countdown: count down time until shutdown 
 - Sport: select sports event after the end of which you want your computer to shut down

NOTE: extension works on Windows or Linux.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Auto Shutdown Extension Auto Shutdown Extension
ID heanibacideokneklnfomdlokppmcaam
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-shutdown-extension/heanibacideokneklnfomdlokppmcaam
คำอธิบาย Small and simple extension for automatic computer shutdown
ขนาดไฟล์ 1.48 MB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 0.1.24
อัปเดตครั้งล่าสุด 2023-11-09
วันที่เผยแพร่ 2020-06-01
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา auto.shutdown.extension
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/senaa12/shutdown-extension
URL หน้าช่วยเหลือ https://github.com/senaa12/shutdown-extension/blob/master/FAQ.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Shutdown Extension",
    "version": "0.1.24",
    "description": "Small and simple extension for automatic computer shutdown",
    "icons": {
        "48": "logo-48.png",
        "128": "logo-128.png"
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": ".\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "nativeMessaging",
        "notifications",
        "webNavigation",
        "storage"
    ],
    "offline_enabled": true
}