set alarm

This extension shows a notification at a set time

set alarmとは何ですか?

set alarmは77120によって開発されたChromeの拡張機能で、その主な機能は「This extension shows a notification at a set time」です。

set alarm拡張機能のCRXファイルをダウンロード

set alarm拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        set the time for a notification. You can also be notified with a sound aswell                    

拡張機能の基本情報

名前 set alarm set alarm
ID hkjfacaiaebelbflcbfgbaiejnakildd
公式URL https://chrome.google.com/webstore/detail/hkjfacaiaebelbflcbfgbaiejnakildd
説明 This extension shows a notification at a set time
ファイルサイズ 23.05 KB
インストール数 120
現在のバージョン 1.0.1
最終更新日 2017-03-04
公開日 2017-03-04
評価 5.00/5 合計 1 レビュー
開発者 77120
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "set alarm",
    "icons": {
        "128": "bell-128.png"
    },
    "description": "This extension shows a notification at a set time",
    "author": "Jyro Snoeijen",
    "homepage_url": "http:\/\/www.datastone.nl",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "bell-128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "alarms",
        "notifications",
        "storage",
        "background"
    ],
    "background": {
        "scripts": [
            "timer.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}