Scratcher's AtCoder

for Scratchers who want to compete in AtCoder

Scratcher's AtCoderคืออะไร?

Scratcher's AtCoder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yos1up และคุณลักษณะหลักของมันคือ "for Scratchers who want to compete in AtCoder"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scratcher's AtCoder

ดาวน์โหลดไฟล์ส่วนขยาย Scratcher's AtCoder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        (The description in English is provided below Japanese.)


# はじめに

この拡張機能を使うと,Scratch 3.0 で AtCoder に参加できるようになります!


# 使い方

(1) AtCoder の解答フォームの横にある,オレンジ色の「Scratch 3.0 オンラインエディタ」ボタンをクリックして,オンラインエディタを開きます.

(2) Scratch オンラインエディタ上で,解答コードを作成します.完成したら,Scratch プロジェクトをローカルファイルにダウンロードします(画面左上のメニューから「ファイル」→「コンピューターに保存する」).

(3) AtCoder に戻り,オレンジ色の「Scratch 3.0 プロジェクトをロード」ボタンをクリックして,(2)でダウンロードしたプロジェクトファイルを選択します.

(4) Scratch プロジェクトが瞬時に C++ ソースに変換され,解答フォームに表示されます.

(5) そのまま解答を提出しましょう!(言語は "C++14(GCC5.4.1)"(またはそれより新しいバージョン)を選択してください)


# Scratch での解答例
 
https://scratch.mit.edu/studios/5346476/


# リンク

GitHub: https://github.com/yos1up/scratch2cpp/tree/master/web/crx

Twitter: @yos1up


=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=


# Introduction

With this extension, you can compete in AtCoder with Scratch 3.0!


# Usage

(1) Go to a submission form of AtCoder, and click orange "Scratch 3.0 online editor" button to open the online editor.

(2) Create your solution in Scratch online editor. If your solution is ready, download your Scratch project to a local file. ([File] -> [Save to your computer]) 

(3) Return to AtCoder and click the orange "Load Scratch project" button. Then select your Scratch project file you downloaded in (2). 

(4) Your Scratch project file will be instantly converted to C++ source, and displayed in the solution form.

(5) Submit it! (Make sure that "C++14(GCC 5.4.1)" (or newer) is selected as the language.) 


# Examples of solutions
 
https://scratch.mit.edu/studios/5346476/


# Links

GitHub: https://github.com/yos1up/scratch2cpp/tree/master/web/crx

Twitter: @yos1up                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Scratcher's AtCoder Scratcher's AtCoder
ID hackndbjgkehhjinjjoldifbhnfddklh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scratchers-atcoder/hackndbjgkehhjinjjoldifbhnfddklh
คำอธิบาย for Scratchers who want to compete in AtCoder
ขนาดไฟล์ 2.2 MB
จำนวนการติดตั้ง 2,000
เวอร์ชันปัจจุบัน 1.4.0
อัปเดตครั้งล่าสุด 2023-10-31
วันที่เผยแพร่ 2019-12-22
คะแนน 4.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา yos1up
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/yos1up/scratch2cpp/tree/master/web/crx
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scratcher's AtCoder",
    "short_name": "ScratchersAC",
    "description": "for Scratchers who want to compete in AtCoder",
    "version": "1.4.0",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/yos1up\/scratch2cpp\/tree\/master\/web\/crx",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/atcoder.jp\/contests\/*\/submit*",
                "https:\/\/atcoder.jp\/contests\/*\/tasks\/*",
                "https:\/\/atcoder.jp\/contests\/*\/custom_test*"
            ],
            "js": [
                "lib\/jquery-3.3.1.min.js",
                "lib\/Stuk-jszip-9fb481a\/dist\/jszip.js",
                "lib\/Stuk-jszip-9fb481a\/dist\/jszip.min.js",
                "sb2_to_cpp.js",
                "sb3_to_cpp.js",
                "main.js"
            ]
        }
    ]
}