typical90_extension

Chrome extension that makes typical90 easier to use.

什麼是typical90_extension?

typical90_extension是由taketakeyyy開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension that makes typical90 easier to use.”。

擴展截圖

screenshot
screenshot

下載typical90_extension擴展crx文件

下載typical90_extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        AtCoderの「競プロ典型 90 問」のページを少し使いやすくします。

* E869120さんの問題画像、解説画像、サンプルコードへのリンクを追加します。
* 問題ページで、問題を難易度順に並び替えることができます。                    

擴展基本資訊

名稱 typical90_extension typical90_extension
ID olilmbfbgdnilofdfbladkgbbfecbidb
官方網址 https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb
簡介 Chrome extension that makes typical90 easier to use.
檔案大小 23.81 KB
安裝次數 132
目前版本 1.2.1
更新時間 2023-05-19
上架時間 2021-04-23
開發者 taketakeyyy
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/taketakeyyy/typical90_extension
說明頁面URL https://github.com/taketakeyyy/typical90_extension
支援的語言 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "typical90_extension",
    "short_name": "ty90ex",
    "description": "Chrome extension that makes typical90 easier to use.",
    "manifest_version": 3,
    "version": "1.2.1",
    "author": "taketakeyyy",
    "icons": {
        "16": "icon\/icon_x16.png",
        "32": "icon\/icon_x32.png",
        "48": "icon\/icon_x48.png",
        "128": "icon\/icon_x128(x96).png"
    },
    "action": {
        "default_title": "typical90_extension",
        "default_icon": {
            "19": "icon\/icon_x19.png",
            "38": "icon\/icon_x38.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "bin\/content_scripts.js"
            ],
            "matches": [
                "http:\/\/atcoder.jp\/contests\/typical90\/*",
                "https:\/\/atcoder.jp\/contests\/typical90\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ]
}