Simple Screen Break

Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.

Simple Screen Breakとは何ですか?

Simple Screen BreakはSolid Code Solutionsによって開発されたChromeの拡張機能で、その主な機能は「Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.」です。

拡張機能のスクリーンショット

screenshot

Simple Screen Break拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Displays a simple alert reminding you to take a screen break.

You can choose how often the notification appears from one of the following options: every 5, 10, 15, 20, 25, 30, 45 or 60 minutes.

Simple Screen Break is simple (as it's name suggests!) and easy-to-use.                    

拡張機能の基本情報

名前 Simple Screen Break Simple Screen Break
ID jckfggaihbloddfjgaodhfjhjegpnalo
公式URL https://chromewebstore.google.com/detail/simple-screen-break/jckfggaihbloddfjgaodhfjhjegpnalo
説明 Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.
ファイルサイズ 56.4 KB
インストール数 35
現在のバージョン 0.0.2
最終更新日 2023-02-23
公開日 2023-01-18
評価 5.00/5 合計 3 レビュー
開発者 Solid Code Solutions
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://www.solidcode.solutions/privacy
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Screen Break",
    "version": "0.0.2",
    "description": "Displays a simple notification reminding you to take a screen break - you can choose how often the reminders appear.",
    "icons": {
        "16": "\/img\/logo_16.png",
        "32": "\/img\/logo_32.png",
        "48": "\/img\/logo_48.png",
        "128": "\/img\/logo_128.png"
    },
    "action": {
        "default_title": "Simple Screen Break Popup",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "content\/main.js"
            ],
            "css": [
                "content\/main.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "alarms",
        "storage"
    ]
}