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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}