Auto Shutdown Extension

Small and simple extension for automatic computer shutdown

什么是Auto Shutdown Extension?

Auto Shutdown Extension是由auto.shutdown.extension开发的Chrome扩展程序,该扩展的主要功能是“Small and simple extension for automatic computer shutdown”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Auto Shutdown Extension扩展crx文件

下载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
}