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
Eメール [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
}