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文件

下载Notify by Script扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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