AtCoderBook
AtCoderのブックマーク
Cos'è AtCoderBook?
AtCoderBook è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "AtCoderのブックマーク".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AtCoderBook
Scarica i file di estensione AtCoderBook in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        ## なにこれ
AtCoderのリンクを保存します。お気に入りの問題や、復習しないといけない問題を保存しておくことができます。
Codeforcesのリンクも保存できるようになりました。
また、好きな問題にお気に入りを設定できるようになりました。
## 使い方
1. AtCoderのページで、問題一覧で出てくるBookボタンを押します。
2. Chromeの右上のバーに出てくるAtCoderBookのアイコンをクリックします。
3. AtCoderでブックマークしたリンクが一覧で出てきます。                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | lcojnofidkanlkoaagdbjkdnelbnlnng | 
| URL Ufficiale | https://chromewebstore.google.com/detail/atcoderbook/lcojnofidkanlkoaagdbjkdnelbnlnng | 
| Descrizione | AtCoderのブックマーク | 
| Dimensione del File | 1.1 MB | 
| Conteggio Installazioni | 56 | 
| Versione Corrente | 0.1.0 | 
| Ultimo Aggiornamento | 2018-09-14 | 
| Data di Pubblicazione | 2018-09-14 | 
| Valutazione | 5.00/5 Totale 1 Valutazioni | 
| Sviluppatore | Unknown | 
| Tipo di Pagamento | free | 
| Lingue Supportate | ja | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AtCoderBook",
    "version": "0.1.0",
    "description": "AtCoder\u306e\u30d6\u30c3\u30af\u30de\u30fc\u30af",
    "author": "ganariya",
    "browser_action": {
        "default_icon": {
            "19": "images\/small_icon.png",
            "38": "images\/large_icon.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/third\/jquery-3.3.1.min.js",
                "scripts\/atcoder.bundle.js"
            ],
            "matches": [
                "https:\/\/beta.atcoder.jp\/contests\/*\/tasks",
                "https:\/\/*.contest.atcoder.jp\/assignments"
            ]
        },
        {
            "js": [
                "scripts\/third\/jquery-3.3.1.min.js",
                "scripts\/atcoderEach.bundle.js"
            ],
            "matches": [
                "https:\/\/beta.atcoder.jp\/contests\/*\/tasks\/*"
            ]
        },
        {
            "js": [
                "scripts\/third\/jquery-3.3.1.min.js",
                "scripts\/codeforces.bundle.js"
            ],
            "matches": [
                "http:\/\/codeforces.com\/contest\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "styles\/checkboxes.css"
    ],
    "background": {
        "scripts": [
            "scripts\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_security_policy": "",
    "permissions": [
        "http:\/\/beta.atcoder.jp\/",
        "storage",
        "unlimitedStorage"
    ]
}  |  |