Scratch's Score Viewer

Displays the score of the searched Scratch works. Scratch上で作品検索した時に各作品の点数(CTスコア)が可視化される拡張機能

Τι είναι το Scratch's Score Viewer;

Το Scratch's Score Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kapipi0314, και η κύρια λειτουργία του είναι "Displays the score of the searched Scratch works. Scratch上で作品検索した時に各作品の点数(CTスコア)が可視化される拡張機能".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Scratch's Score Viewer

Λήψη αρχείων επέκτασης Scratch's Score Viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This is a Chrome extension to visualize the scores of works retrieved on Scratch*1. When you want to learn by referring to published works, the visualization of the CT skills (programming thinking skills) required to implement the program will make it easier to select works.
A program based on the Dr.scratch analysis program (https://github.com/AngelaVargas/drscratchv3) is used to measure the scores.

*1 Scratch(1.0) works are not supported.

Ver1.1 Works created in Scratch (2.0) are also supported

----

Scratch上で検索した作品の点数を可視化するためのChrome拡張機能です*1. 公開されている作品を参考に学習を行いたい際に,そのプログラムの実装に必要なCTスキル(プログラミング的思考能力)が可視化されていることで,作品の選定が容易になります.
点数の測定にはDr.scratchの解析プログラム(https://github.com/AngelaVargas/drscratchv3)を基にしたプログラムを使用しています.

*1 Scratch(1.0)の作品には対応していません.

Ver1.1 Scratch(2.0)で作成された作品にも対応                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Scratch's Score Viewer Scratch's Score Viewer
ID cnlellabaepgflmimfjkbgoagjllgpfe
Επίσημο URL https://chromewebstore.google.com/detail/scratchs-score-viewer/cnlellabaepgflmimfjkbgoagjllgpfe
Περιγραφή Displays the score of the searched Scratch works. Scratch上で作品検索した時に各作品の点数(CTスコア)が可視化される拡張機能
Μέγεθος Αρχείου 5.65 MB
Αριθμός Εγκαταστάσεων 231
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2023-03-07
Ημερομηνία Δημοσίευσης 2023-02-03
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής kapipi0314
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/keigo-0314/scratch-score-viewer
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scratch's Score Viewer",
    "description": "Displays the score of the searched Scratch works. Scratch\u4e0a\u3067\u4f5c\u54c1\u691c\u7d22\u3057\u305f\u6642\u306b\u5404\u4f5c\u54c1\u306e\u70b9\u6570\uff08CT\u30b9\u30b3\u30a2\uff09\u304c\u53ef\u8996\u5316\u3055\u308c\u308b\u62e1\u5f35\u6a5f\u80fd",
    "version": "1.1",
    "action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "loader\/searchLoader.js"
            ],
            "matches": [
                "https:\/\/scratch.mit.edu\/search\/*"
            ]
        },
        {
            "js": [
                "loader\/mypageLoader.js"
            ],
            "matches": [
                "https:\/\/scratch.mit.edu\/mystuff\/"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/search.js",
                "src\/drscratch.js",
                "src\/mypage.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/ajax.googleapis.com\/"
    ]
}