Skyblock
The Unofficial Skyblock Chrome Extension - Created by YLOD
¿Qué es Skyblock?
Skyblock es una extensión de Chrome desarrollada por smurfcrayons, y su función principal es "The Unofficial Skyblock Chrome Extension - Created by YLOD".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Skyblock
Descarga archivos de extensión Skyblock en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | dmpgjkinkppjihelkdlgkfoocbhfmkkj |
URL Oficial | https://chromewebstore.google.com/detail/skyblock/dmpgjkinkppjihelkdlgkfoocbhfmkkj |
Descripción | The Unofficial Skyblock Chrome Extension - Created by YLOD |
Tamaño del Archivo | 58.31 KB |
Cantidad de Instalaciones | 84 |
Versión Actual | 1.01 |
Última Actualización | 2019-05-04 |
Fecha de Publicación | 2019-05-04 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | smurfcrayons |
Tipo de Pago | free |
Idiomas Soportados | 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'" } |