Does it use SVG?
Show an icon if a page uses SVG.
Vad är Does it use SVG??
Does it use SVG? är en Chrome-tillägg utvecklad av Philip Rogers, och dess huvudfunktion är "Show an icon if a page uses SVG.".
Tilläggsskärmbilder
Ladda ner Does it use SVG?-förlängningens CRX-fil
Ladda ner Does it use SVG?-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension shows a small SVG icon on pages that use SVG content. Grundläggande Information om Tillägg
| Namn | |
| ID | nmihkihinlonaiknpgifhlgdmbaibebi |
| Officiell webbadress | https://chromewebstore.google.com/detail/does-it-use-svg/nmihkihinlonaiknpgifhlgdmbaibebi |
| Beskrivning | Show an icon if a page uses SVG. |
| Filstorlek | 19.75 KB |
| Antal Installationer | 142 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2013-02-28 |
| Publiceringsdatum | 2013-02-27 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Philip Rogers |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |