simulator.io - save fix

An extension that provides easy save functionality for simulator.io (by Bastian Born) due to the built in functionality having bugs.

Τι είναι το simulator.io - save fix;

Το simulator.io - save fix είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον duk, και η κύρια λειτουργία του είναι "An extension that provides easy save functionality for simulator.io (by Bastian Born) due to the built in functionality having bugs.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης simulator.io - save fix

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

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

                        This extension was created in order to fix the save functionality of https://simulator.io (by Bastian Born) because it is a cool website with only one quite annoying bug.

Right now, when you create a user account on the mentioned website you must "jump through hoops" to get the "Fork" save feature to work. On top of that you can get stuck on an infinite loading screen and your data might be lost if you haven't used the "Link" save feature.

This extension changes some of the functionality of the website. First, to make the feature work, it overrides the behavior of the "Create new logic circuit" button on the homepage in case the user enters that way. The difference is it uses the hyper link to access the editor instead of the built-in web application transition. The next change that was made is that the extension removes the "Link" button and instead makes the "Fork" button generate the save link in one click. The link is then stored in the extension, so it can easily be accessed from the extension's pop-up window.                    

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

Όνομα simulator.io - save fix simulator.io - save fix
ID lnlkpjgpmmgcpdeomjjdnpmdnbigbahg
Επίσημο URL https://chrome.google.com/webstore/detail/simulatorio-save-fix/lnlkpjgpmmgcpdeomjjdnpmdnbigbahg
Περιγραφή An extension that provides easy save functionality for simulator.io (by Bastian Born) due to the built in functionality having bugs.
Μέγεθος Αρχείου 46.85 KB
Αριθμός Εγκαταστάσεων 41
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2018-09-05
Ημερομηνία Δημοσίευσης 2018-09-05
Προγραμματιστής duk
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://simulator.io
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "simulator.io - save fix",
    "version": "1.0",
    "description": "An extension that provides easy save functionality for simulator.io (by Bastian Born) due to the built in functionality having bugs.",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/jquery-3.2.1.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/simulator.io\/board\/*"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/contentScriptBoard.js"
            ]
        },
        {
            "matches": [
                "*:\/\/simulator.io\/"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/contentScriptHome.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 2
}