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은(는) duk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that provides easy save functionality for simulator.io (by Bastian Born) due to the built in functionality having bugs."입니다.

확장 프로그램 스크린샷

screenshot

simulator.io - save fix 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}