Skyblock

The Unofficial Skyblock Chrome Extension - Created by YLOD

Skyblock là gì?

Skyblock là một tiện ích mở rộng Chrome được phát triển bởi smurfcrayons, và tính năng chính của nó là "The Unofficial Skyblock Chrome Extension - Created by YLOD".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Skyblock

Tải xuống các tệp mở rộng Skyblock dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Skyblock Skyblock
ID dmpgjkinkppjihelkdlgkfoocbhfmkkj
URL Chính Thức https://chromewebstore.google.com/detail/skyblock/dmpgjkinkppjihelkdlgkfoocbhfmkkj
Mô tả The Unofficial Skyblock Chrome Extension - Created by YLOD
Kích Thước Tệp 58.31 KB
Số Lần Cài Đặt 84
Phiên Bản Hiện Tại 1.01
Cập Nhật Lần Cuối 2019-05-04
Ngày Phát Hành 2019-05-04
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển smurfcrayons
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}