Custom sites

create a website style

¿Qué es Custom sites?

Custom sites es una extensión de Chrome desarrollada por akimovivan355, y su función principal es "create a website style".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Custom sites

Descarga archivos de extensión Custom sites 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

                        the application allows you to customize the interface of google and youtube. Select separate colors for the text of the background links using the full RGB palette for each site separately, the colors can be reset if necessary                    

Información Básica de la Extensión

Nombre Custom sites Custom sites
ID hiadibhippamgikegbcbfagpalmfoonh
URL Oficial https://chromewebstore.google.com/detail/custom-sites/hiadibhippamgikegbcbfagpalmfoonh
Descripción create a website style
Tamaño del Archivo 45.04 KB
Cantidad de Instalaciones 42
Versión Actual 4.1
Última Actualización 2023-01-24
Fecha de Publicación 2021-09-01
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador akimovivan355
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom sites",
    "description": "create a website style",
    "version": "4.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "48": "image 3.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "*:\/\/*.google.com\/"
    ]
}