scratch 生存確認

Scratcherのための時間自動入力ツール

What is scratch 生存確認?

scratch 生存確認 is a Chrome extension developed by P_nutsK, and its main feature is "Scratcherのための時間自動入力ツール".

Extension Screenshots

screenshot
screenshot

Download scratch 生存確認 Extension CRX File

Download scratch 生存確認 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        この拡張機能は、ScratchWebサイトでのプロフィールを自動で書き換えることによって、今までに行なっていた面倒な作業のいくつかを無くし、あなたのプロフィールをユニークにします。

〜主な機能〜
・サイトを更新した時の時刻を自動で認識し、プロフィールに書き込むことができます。
これにより、「今: →いる いない」の代用や、「最後にログインしたのは: 1月1日 12時」
などの自動化が可能です。

〜コードの公開〜
https://github.com/P-nutsK/Scratch-Last-login/tree/chrome-website-publish-ver
で、コードを公開しています。また、提案なども常に受け付けています。
〜注意〜
このプロジェクトはScratchウェブサイトの運営者と連携せず、また後援その他一切の公式な関係を有しません。                    

Extension Basic Information

Name scratch 生存確認 scratch 生存確認
ID bckmjnfapmpnkjlhghbdbdemkjmkmdal
Official URL https://chromewebstore.google.com/detail/scratch-%E7%94%9F%E5%AD%98%E7%A2%BA%E8%AA%8D/bckmjnfapmpnkjlhghbdbdemkjmkmdal
Description Scratcherのための時間自動入力ツール
File Size 19.42 KB
Installation Count 149
Current Version 1.0.0
Last Updated 2023-06-13
Publish Date 2023-06-13
Developer P_nutsK
Email [email protected]
Payment Type free
Extension Website https://github.com/P-nutsK/Scratch-Last-login/tree/chrome-website-publish-ver
Help Page URL https://scratch.mit.edu/users/p_nuts
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "scratch \u751f\u5b58\u78ba\u8a8d",
    "version": "1.0.0",
    "description": "Scratcher\u306e\u305f\u3081\u306e\u6642\u9593\u81ea\u52d5\u5165\u529b\u30c4\u30fc\u30eb",
    "host_permissions": [
        "https:\/\/scratch.mit.edu\/*",
        "https:\/\/api.scratch.mit.edu\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scratch.mit.edu\/*"
            ],
            "js": [
                "time.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": []
}