Easy Skript

A syntax highlighting autocompleting code editor to replace the default Minehut Skript editor.

Τι είναι το Easy Skript;

Το Easy Skript είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον IF Studios, και η κύρια λειτουργία του είναι "A syntax highlighting autocompleting code editor to replace the default Minehut Skript editor.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        If you use the Skript plugin on your Minehut servers, you know that the only way to code Skripts for your server is either directly in the Minehut file editor which is just a plain text entry box, or using some other editor like Sublime Text, and then having to copy and paste all of your code back and forth each time you make edits. With Easy Skript, this problem is solved.

Easy Skript replaces the default Minehut editor with a feature-rich editor built just for the Skript coding language.

The Easy Skript Editor has:
    - auto code completion
    - syntax highlighting
    - automatic file saving
    - 37 different editor themes to choose from (both light and dark)
    - useful keyboard shortcuts like "ctrl+s" to save your file
    - editor is resizable, and can enter fullscreen mode
    - save and upload Skript files to and from your computer
    - change font size with the click of a button
And a LOT more!

In addition to the editor features, Easy Skript adds a button to the Minehut home screen to automatically navigate to your Skripts directory, so you don't have to click through the Minehut file manager every time you want to get to one of your Skripts. It also has a section with quick links to useful resources, like Skript documentation.

Easy Skript is open sourced, so if you think it is malicious in any way, feel free to look through the code: https://github.com/IFStudios-dev/EasySkript

If you have any questions, have a suggestion for Easy Skript, want to stay updated, or want to talk about anything related to Easy Skript, join our Discord server! 
Invite link: https://discord.gg/vv4UkPcn2q                    

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

Όνομα Easy Skript Easy Skript
ID nidndibopkcanlecfbachecmekjbpcip
Επίσημο URL https://chromewebstore.google.com/detail/easy-skript/nidndibopkcanlecfbachecmekjbpcip
Περιγραφή A syntax highlighting autocompleting code editor to replace the default Minehut Skript editor.
Μέγεθος Αρχείου 65.64 KB
Αριθμός Εγκαταστάσεων 164
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2021-06-02
Ημερομηνία Δημοσίευσης 2021-05-07
Αξιολόγηση 4.84/5 Συνολικά 31 Αξιολογήσεις
Προγραμματιστής IF Studios
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://discord.gg/vv4UkPcn2q
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Skript",
    "version": "1.1",
    "description": "A syntax highlighting autocompleting code editor to replace the default Minehut Skript editor.",
    "manifest_version": 2,
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/minehut.com\/dashboard\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    }
}