CSS Style Finder

Finds elements matching a given CSS selector on the pages you visit.

CSS Style Finderとは何ですか?

CSS Style FinderはThomas Grinderslevによって開発されたChromeの拡張機能で、その主な機能は「Finds elements matching a given CSS selector on the pages you visit.」です。

CSS Style Finder拡張機能のCRXファイルをダウンロード

CSS Style Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 CSS Style Finder CSS Style Finder
ID ecfecohpfmmmbmabcenekcebdckjfdpo
公式URL https://chromewebstore.google.com/detail/css-style-finder/ecfecohpfmmmbmabcenekcebdckjfdpo
説明 Finds elements matching a given CSS selector on the pages you visit.
ファイルサイズ 21.49 KB
インストール数 72
現在のバージョン 0.2
最終更新日 2015-01-08
公開日 2015-01-08
開発者 Thomas Grinderslev
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS Style Finder",
    "version": "0.2",
    "description": "Finds elements matching a given CSS selector on the pages you visit.",
    "browser_action": {
        "default_icon": {
            "19": "19.png",
            "38": "38.png",
            "128": "128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "19": "19.png",
        "38": "38.png",
        "128": "128.png"
    },
    "permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        "128.png",
        "128-active.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}