Stayed focused

Stay focused by setting website lock out timers to prevent distractions.

Stayed focusedとは何ですか?

Stayed focusedはmarnie8642によって開発されたChromeの拡張機能で、その主な機能は「Stay focused by setting website lock out timers to prevent distractions.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Temporarily lock websites to prevent distractions.                    

拡張機能の基本情報

名前 Stayed focused Stayed focused
ID lieoebpmdehgcfaaobcckmhanfpeccle
公式URL https://chromewebstore.google.com/detail/stayed-focused/lieoebpmdehgcfaaobcckmhanfpeccle
説明 Stay focused by setting website lock out timers to prevent distractions.
ファイルサイズ 243 KB
インストール数 34
現在のバージョン 1.0.3
最終更新日 2021-11-29
公開日 2021-11-23
開発者 marnie8642
Eメール [email protected]
支払い方法 in_app
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stayed focused",
    "description": "Stay focused by setting website lock out timers to prevent distractions.",
    "version": "1.0.3",
    "manifest_version": 3,
    "action": {
        "default_popup": "views\/popup.html",
        "default_icon": {
            "16": "images\/lock.png",
            "32": "images\/lock.png",
            "48": "images\/lock.png",
            "128": "images\/lock.png"
        }
    },
    "icons": {
        "16": "images\/lock.png",
        "32": "images\/lock.png",
        "48": "images\/lock.png",
        "128": "images\/lock.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens popup.html"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/content_start.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "run_at": "document_end",
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "build\/background.js",
        "type": "module"
    }
}