CSS Dig
Collect and analyze CSS.
CSS Digとは何ですか?
CSS Digはhttps://cssdig.comによって開発されたChromeの拡張機能で、その主な機能は「Collect and analyze CSS.」です。
拡張機能のスクリーンショット
CSS Dig拡張機能のCRXファイルをダウンロード
CSS Dig拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
CSS Dig finds and groups stylesheets and style blocks on most websites, providing an easy way to analyze the code and plan refactors.
Properties: Take a look at all your CSS properties, their frequency and variations. Have too many shades of blue? Inconsistencies often means confusion for your developers and irregularities for your end users.
Selectors & Specificity: Are your selectors long? Using lots of IDs? Specificity wars are frustrating and piling on new CSS will only make the situation worse. Find potential problem areas and make a plan to fix. 拡張機能の基本情報
| 名前 | |
| ID | lpnhmlhomomelfkcjnkcacofhmggjmco |
| 公式URL | https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco |
| 説明 | Collect and analyze CSS. |
| ファイルサイズ | 175 KB |
| インストール数 | 12,631 |
| 現在のバージョン | 1.2.7 |
| 最終更新日 | 2019-05-08 |
| 公開日 | 2019-05-07 |
| 評価 | 2.86/5 合計 51 レビュー |
| 開発者 | https://cssdig.com |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://cssdig.com |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CSS Dig",
"description": "Collect and analyze CSS.",
"version": "1.2.7",
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"icons": {
"16": "i\/icon16.png",
"48": "i\/icon48.png",
"128": "i\/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "i\/icon19.png",
"38": "i\/icon38.png"
},
"default_title": "CSS Dig"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"js\/jquery.min.js"
]
}
],
"web_accessible_resources": [
"html\/dig.html",
"i\/icon48.png",
"css\/cssdig.css",
"js\/cssdig.js"
]
} | |