Devicon

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

Devicon là gì?

Devicon là một tiện ích mở rộng Chrome được phát triển bởi Matis Lepik, và tính năng chính của nó là "Shows when you are on a dev-version of a page by putting a border around the favicon.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Devicon

Tải xuống các tệp mở rộng Devicon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Devicon Devicon
ID giibkebjejbhlblmanjkmkmdkahmabge
URL Chính Thức https://chromewebstore.google.com/detail/devicon/giibkebjejbhlblmanjkmkmdkahmabge
Mô tả Shows when you are on a dev-version of a page by putting a border around the favicon.
Kích Thước Tệp 36.68 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 1.1.5
Cập Nhật Lần Cuối 2019-05-16
Ngày Phát Hành 2019-05-16
Nhà Phát Triển Matis Lepik
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/MatisLepik/devicon
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}