Devicon

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

Qu'est-ce que Devicon ?

Devicon est une extension Chrome développée par Matis Lepik, et sa fonction principale est "Shows when you are on a dev-version of a page by putting a border around the favicon.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Devicon

Téléchargez les fichiers d'extension Devicon au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Devicon Devicon
ID giibkebjejbhlblmanjkmkmdkahmabge
URL Officiel https://chromewebstore.google.com/detail/devicon/giibkebjejbhlblmanjkmkmdkahmabge
Description Shows when you are on a dev-version of a page by putting a border around the favicon.
Taille du Fichier 36.68 KB
Nombre d'Installations 24
Version Actuelle 1.1.5
Dernière Mise à Jour 2019-05-16
Date de Publication 2019-05-16
Développeur Matis Lepik
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/MatisLepik/devicon
Langues Prises en Charge 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"
            ]
        }
    ]
}