Skyblock

The Unofficial Skyblock Chrome Extension - Created by YLOD

Co to jest Skyblock?

Skyblock to rozszerzenie Chrome opracowane przez smurfcrayons, a jego główną funkcją jest „The Unofficial Skyblock Chrome Extension - Created by YLOD”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Skyblock

Pobierz pliki rozszerzeń Skyblock w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This is a simple plugin created for the forums at https://skyblock.net

It allows you to change the background of the website to any image you'd like instead of the original light blue.

This is the first release of the extension and if there is enough support more features may be added.                    

Podstawowe informacje o rozszerzeniu

Nazwa Skyblock Skyblock
ID dmpgjkinkppjihelkdlgkfoocbhfmkkj
Oficjalny URL https://chromewebstore.google.com/detail/skyblock/dmpgjkinkppjihelkdlgkfoocbhfmkkj
Opis The Unofficial Skyblock Chrome Extension - Created by YLOD
Rozmiar pliku 58.31 KB
Liczba instalacji 84
Aktualna Wersja 1.01
Ostatnia Aktualizacja 2019-05-04
Data Publikacji 2019-05-04
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper smurfcrayons
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Skyblock",
    "description": "The Unofficial Skyblock Chrome Extension - Created by YLOD",
    "version": "1.01",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.skyblock.net\/*"
            ],
            "css": [
                "background.css"
            ],
            "run_at": "document_start",
            "js": [
                "jquery.js",
                "background.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}