Does it use SVG?

Show an icon if a page uses SVG.

什麼是Does it use SVG??

Does it use SVG?是由Philip Rogers開發的Chrome擴展程式,該擴展的主要功能是“Show an icon if a page uses SVG.”。

擴展截圖

screenshot

下載Does it use SVG?擴展crx文件

下載Does it use SVG?擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension shows a small SVG icon on pages that use SVG content.                    

擴展基本資訊

名稱 Does it use SVG? Does it use SVG?
ID nmihkihinlonaiknpgifhlgdmbaibebi
官方網址 https://chromewebstore.google.com/detail/does-it-use-svg/nmihkihinlonaiknpgifhlgdmbaibebi
簡介 Show an icon if a page uses SVG.
檔案大小 19.75 KB
安裝次數 142
目前版本 1.1
更新時間 2013-02-28
上架時間 2013-02-27
評分 5.00/5 共 1 次評分
開發者 Philip Rogers
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Does it use SVG?",
    "version": "1.1",
    "description": "Show an icon if a page uses SVG.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "svg-19.png",
        "default_title": "Does it use SVG?"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "24": "svg-24.png",
        "48": "svg-48.png",
        "128": "svg-128.png"
    },
    "manifest_version": 2
}