CSS Breakpoint Button

A browser extension that displays the current breakpoint for the selected css framework.

CSS Breakpoint Button là gì?

CSS Breakpoint Button là một tiện ích mở rộng Chrome được phát triển bởi Div or Die, và tính năng chính của nó là "A browser extension that displays the current breakpoint for the selected css framework.".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng CSS Breakpoint Button 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

                        The CSS Breakpoint Button extension shows users the current css breakpoint and width of the current page. There are two prepackaged rule sets provided with the extension, Bootstrap and Tailwindcss.  Custom breakpoints can be created to match your specific needs.  Settings are domain specific to make it easier for developers who are working on multiple applications with different frameworks and/or breakpoint values.                    

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

Tên CSS Breakpoint Button CSS Breakpoint Button
ID hanagefkggieaghgifnhmjnkeilgemda
URL Chính Thức https://chromewebstore.google.com/detail/css-breakpoint-button/hanagefkggieaghgifnhmjnkeilgemda
Mô tả A browser extension that displays the current breakpoint for the selected css framework.
Kích Thước Tệp 603 KB
Số Lần Cài Đặt 57
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2021-09-07
Ngày Phát Hành 2021-09-07
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Div or Die
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS Breakpoint Button",
    "homepage_url": "https:\/\/css.usefulapps.cloud",
    "description": "A browser extension that displays the current breakpoint for the selected css framework.",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "CSS Breakpoint Button",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "53.0"
        }
    },
    "version": "0.1.0",
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}