Notify by Script

Extension for setting notifications that prepared by scripts.

Notify by Script란 무엇입니까?

Notify by Script은(는) expercise Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for setting notifications that prepared by scripts."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Notify by Script 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Notify by Script is here to allow you setting alarms with custom scripted notifications.

For example information, visit https://github.com/ufuk/notify-by-script#notify-by-script                    

확장 프로그램 기본 정보

이름 Notify by Script Notify by Script
ID idgiodaooapkmmipoahlcmggofokcilg
공식 URL https://chromewebstore.google.com/detail/notify-by-script/idgiodaooapkmmipoahlcmggofokcilg
설명 Extension for setting notifications that prepared by scripts.
파일 크기 54.84 KB
설치 횟수 32
현재 버전 1.0.5
최근 업데이트 2022-02-21
출시 날짜 2017-01-17
평점 5.00/5 총 6 개의 평점
개발자 expercise Labs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://expercise.com
도움말 페이지 URL https://github.com/ufuk/notify-by-script
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notify by Script",
    "description": "Extension for setting notifications that prepared by scripts.",
    "version": "1.0.5",
    "author": "Ufuk Uzun",
    "icons": {
        "128": "icon-128.png",
        "256": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "main.js",
            "jquery.min.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "alarms",
        "notifications",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}