Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

Auto Shutdown Extension là gì?

Auto Shutdown Extension là một tiện ích mở rộng Chrome được phát triển bởi auto.shutdown.extension, và tính năng chính của nó là "Small and simple extension for automatic computer shutdown".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto Shutdown Extension

Tải xuống các tệp mở rộng Auto Shutdown Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Auto Shutdown Extension Auto Shutdown Extension
ID heanibacideokneklnfomdlokppmcaam
URL Chính Thức https://chromewebstore.google.com/detail/auto-shutdown-extension/heanibacideokneklnfomdlokppmcaam
Mô tả Small and simple extension for automatic computer shutdown
Kích Thước Tệp 1.48 MB
Số Lần Cài Đặt 5,000
Phiên Bản Hiện Tại 0.1.24
Cập Nhật Lần Cuối 2023-11-09
Ngày Phát Hành 2020-06-01
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển auto.shutdown.extension
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/senaa12/shutdown-extension
URL Trang Trợ Giúp https://github.com/senaa12/shutdown-extension/blob/master/FAQ.md
Ngôn Ngữ Được Hỗ Trợ 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
}