typical90_extension

Chrome extension that makes typical90 easier to use.

Qu'est-ce que typical90_extension ?

typical90_extension est une extension Chrome développée par taketakeyyy, et sa fonction principale est "Chrome extension that makes typical90 easier to use.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension typical90_extension

Téléchargez les fichiers d'extension typical90_extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

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

Informations de Base sur l'Extension

Nom typical90_extension typical90_extension
ID olilmbfbgdnilofdfbladkgbbfecbidb
URL Officiel https://chromewebstore.google.com/detail/typical90extension/olilmbfbgdnilofdfbladkgbbfecbidb
Description Chrome extension that makes typical90 easier to use.
Taille du Fichier 23.81 KB
Nombre d'Installations 132
Version Actuelle 1.2.1
Dernière Mise à Jour 2023-05-19
Date de Publication 2021-04-23
Développeur taketakeyyy
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/taketakeyyy/typical90_extension
URL de la Page d'Aide https://github.com/taketakeyyy/typical90_extension
Langues Prises en Charge 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"
    ]
}