Skyblock
The Unofficial Skyblock Chrome Extension - Created by YLOD
什麼是Skyblock?
Skyblock是由smurfcrayons開發的Chrome擴展程式,該擴展的主要功能是“The Unofficial Skyblock Chrome Extension - Created by YLOD”。
擴展截圖
下載Skyblock擴展crx文件
下載Skyblock擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | dmpgjkinkppjihelkdlgkfoocbhfmkkj |
官方網址 | https://chromewebstore.google.com/detail/skyblock/dmpgjkinkppjihelkdlgkfoocbhfmkkj |
簡介 | The Unofficial Skyblock Chrome Extension - Created by YLOD |
檔案大小 | 58.31 KB |
安裝次數 | 84 |
目前版本 | 1.01 |
更新時間 | 2019-05-04 |
上架時間 | 2019-05-04 |
評分 | 5.00/5 共 1 次評分 |
開發者 | smurfcrayons |
付費類型 | free |
支援的語言 | 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'" } |