CSS Breakpoint Button
A browser extension that displays the current breakpoint for the selected css framework.
CSS Breakpoint Buttonとは何ですか?
CSS Breakpoint ButtonはDiv or Dieによって開発されたChromeの拡張機能で、その主な機能は「A browser extension that displays the current breakpoint for the selected css framework.」です。
拡張機能のスクリーンショット
CSS Breakpoint Button拡張機能のCRXファイルをダウンロード
CSS Breakpoint Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | CSS Breakpoint Button |
ID | hanagefkggieaghgifnhmjnkeilgemda |
公式URL | https://chromewebstore.google.com/detail/css-breakpoint-button/hanagefkggieaghgifnhmjnkeilgemda |
説明 | A browser extension that displays the current breakpoint for the selected css framework. |
ファイルサイズ | 603 KB |
インストール数 | 57 |
現在のバージョン | 0.1.0 |
最終更新日 | 2021-09-07 |
公開日 | 2021-09-07 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Div or Die |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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'" } |