AtCoderBook

AtCoderのブックマーク

What is AtCoderBook?

AtCoderBook is a Chrome extension developed by Unknown, and its main feature is "AtCoderのブックマーク".

Extension Screenshots

screenshot

Download AtCoderBook Extension CRX File

Download AtCoderBook 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

                        ## なにこれ
AtCoderのリンクを保存します。お気に入りの問題や、復習しないといけない問題を保存しておくことができます。
Codeforcesのリンクも保存できるようになりました。
また、好きな問題にお気に入りを設定できるようになりました。

## 使い方
1. AtCoderのページで、問題一覧で出てくるBookボタンを押します。
2. Chromeの右上のバーに出てくるAtCoderBookのアイコンをクリックします。
3. AtCoderでブックマークしたリンクが一覧で出てきます。                    

Extension Basic Information

Name AtCoderBook AtCoderBook
ID lcojnofidkanlkoaagdbjkdnelbnlnng
Official URL https://chromewebstore.google.com/detail/atcoderbook/lcojnofidkanlkoaagdbjkdnelbnlnng
Description AtCoderのブックマーク
File Size 1.1 MB
Installation Count 56
Current Version 0.1.0
Last Updated 2018-09-14
Publish Date 2018-09-14
Rating 5.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Supported Languages 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"
    ]
}