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.」です。
拡張機能のスクリーンショット
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? |
ID | nmihkihinlonaiknpgifhlgdmbaibebi |
公式URL | 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 |
Eメール | [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 } |