Phosphorate

Simple extension to include an option on Scratch player pages to use the Phosphorus player.

Τι είναι το Phosphorate;

Το Phosphorate είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thepeanutman98, και η κύρια λειτουργία του είναι "Simple extension to include an option on Scratch player pages to use the Phosphorus player.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Phosphorate

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

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

                        This is a simple extension that adds an switch on Scratch (https://scratch.mit.edu/) player pages (pages for projects, which are of the format https://scratch.mit.edu/projects/[project id]), such as https://scratch.mit.edu/projects/10000007/) that allows the use of the Phosphorus renderer (or other Scratch renderers) instead of the default Flash renderer. 

The source code is hosted on Github at https://github.com/thepeanutman98/Phosphorate

If you are making a website and want it to load faster, try OptiPic. They automatically compress all the images on your website with an easy-to-use interface. Use the link https://optipic.io/en/?my_coupon=90j9PaUisXkMcWe3LCRKFjOfSXpC9Y1a or use the offer code 90j9PaUisXkMcWe3LCRKFjOfSXpC9Y1a at sign-in to get 5-10% off, and support further development of extensions like these!

Note: Phosphorus can be found at https://phosphorus.github.com and was made by Nathan Dinsmore. Phosphorate was not developed by any of the developers of Phosphorus. Phosphorate simply uses the Phosphorus player. The same is true for the Sulfurous player.                    

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

Όνομα Phosphorate Phosphorate
ID nipcpbcfojhiehanhhddkmfjdgjdfolg
Επίσημο URL https://chromewebstore.google.com/detail/phosphorate/nipcpbcfojhiehanhhddkmfjdgjdfolg
Περιγραφή Simple extension to include an option on Scratch player pages to use the Phosphorus player.
Μέγεθος Αρχείου 41.46 KB
Αριθμός Εγκαταστάσεων 152
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2018-03-19
Ημερομηνία Δημοσίευσης 2018-03-19
Αξιολόγηση 2.43/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής thepeanutman98
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/thepeanutman98/Phosphorate
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/thepeanutman98/Phosphorate/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Phosphorate",
    "short_name": "Phosphorate",
    "version": "1.1.2",
    "icons": {
        "16": "favicon16.png",
        "24": "favicon24.png",
        "32": "favicon32.png",
        "48": "favicon48.png",
        "64": "favicon64.png",
        "128": "favicon128.png"
    },
    "permissions": [
        "storage"
    ],
    "minimum_chrome_version": "40",
    "description": "Simple extension to include an option on Scratch player pages to use the Phosphorus player.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/scratch.mit.edu\/projects\/*"
            ],
            "exclude_matches": [
                "*:\/\/scratch.mit.edu\/projects\/*#fullscreen",
                "*:\/\/scratch.mit.edu\/projects\/*#editor",
                "*:\/\/scratch.mit.edu\/projects\/*\/remixtree\/",
                "*:\/\/scratch.mit.edu\/projects\/*\/remixes\/",
                "*:\/\/scratch.mit.edu\/projects\/*\/studios\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}