Devicon

Shows when you are on a dev-version of a page by putting a border around the favicon.

¿Qué es Devicon?

Devicon es una extensión de Chrome desarrollada por Matis Lepik, y su función principal es "Shows when you are on a dev-version of a page by putting a border around the favicon.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Devicon

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

                        Looks at the URL of the page you're on to see if it's a dev environment and adds a border to the favicon so you can easily tell if you're on a dev environment or not.

You can change in the options what URL hostname constitutes a dev environment, by default we look for:

- localhost
- 127.0.0.1
- Sites ending with .test                    

Información Básica de la Extensión

Nombre Devicon Devicon
ID giibkebjejbhlblmanjkmkmdkahmabge
URL Oficial https://chromewebstore.google.com/detail/devicon/giibkebjejbhlblmanjkmkmdkahmabge
Descripción Shows when you are on a dev-version of a page by putting a border around the favicon.
Tamaño del Archivo 36.68 KB
Cantidad de Instalaciones 24
Versión Actual 1.1.5
Última Actualización 2019-05-16
Fecha de Publicación 2019-05-16
Desarrollador Matis Lepik
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/MatisLepik/devicon
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Devicon",
    "version": "1.1.5",
    "manifest_version": 2,
    "description": "Shows when you are on a dev-version of a page by putting a border around the favicon.",
    "homepage_url": "http:\/\/matislepik.com\/devicon",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "build\/bg.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "19": "icons\/icon19.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Devicon"
    },
    "web_accessible_resources": [
        "assets\/overlay.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/content.js"
            ]
        }
    ]
}