Devicon

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

什麼是Devicon?

Devicon是由Matis Lepik開發的Chrome擴展程式,該擴展的主要功能是“Shows when you are on a dev-version of a page by putting a border around the favicon.”。

擴展截圖

screenshot
screenshot

下載Devicon擴展crx文件

下載Devicon擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Devicon Devicon
ID giibkebjejbhlblmanjkmkmdkahmabge
官方網址 https://chromewebstore.google.com/detail/devicon/giibkebjejbhlblmanjkmkmdkahmabge
簡介 Shows when you are on a dev-version of a page by putting a border around the favicon.
檔案大小 36.68 KB
安裝次數 24
目前版本 1.1.5
更新時間 2019-05-16
上架時間 2019-05-16
開發者 Matis Lepik
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/MatisLepik/devicon
支援的語言 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"
            ]
        }
    ]
}