Does it use SVG?
Show an icon if a page uses SVG.
Does it use SVG? क्या है?
Does it use SVG? Philip Rogers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show an icon if a page uses SVG."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Does it use SVG? एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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 } |