Does it use SVG?
Show an icon if a page uses SVG.
Does it use SVG?คืออะไร?
Does it use SVG? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Philip Rogers และคุณลักษณะหลักของมันคือ "Show an icon if a page uses SVG."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Does it use SVG?
ดาวน์โหลดไฟล์ส่วนขยาย Does it use SVG? ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension shows a small SVG icon on pages that use SVG content. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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 |
| อีเมล | [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
} | |