typical90_extension

Chrome extension that makes typical90 easier to use.

Wat is typical90_extension?

typical90_extension is een Chrome-extensie ontwikkeld door taketakeyyy, en de belangrijkste functie is "Chrome extension that makes typical90 easier to use.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie typical90_extension

Download typical90_extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

Basisinformatie over de Extensie

Naam typical90_extension typical90_extension
ID olilmbfbgdnilofdfbladkgbbfecbidb
Officiële URL https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb
Beschrijving Chrome extension that makes typical90 easier to use.
Bestandsgrootte 23.81 KB
Aantal Installaties 132
Huidige Versie 1.2.1
Laatst Bijgewerkt 2023-05-19
Publicatiedatum 2021-04-23
Ontwikkelaar taketakeyyy
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/taketakeyyy/typical90_extension
Help Pagina-URL https://github.com/taketakeyyy/typical90_extension
Ondersteunde Talen 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"
    ]
}