YouTube Studio Favicon
Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.
Vad är YouTube Studio Favicon?
YouTube Studio Favicon är en Chrome-tillägg utvecklad av https://damiendavisneff.com, och dess huvudfunktion är "Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.".
Tilläggsskärmbilder
Ladda ner YouTube Studio Favicon-förlängningens CRX-fil
Ladda ner YouTube Studio Favicon-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
Gives YouTube Studio a separate favicon, which is the Studio's Mobile App icon, to differentiate it from the main YouTube site. Grundläggande Information om Tillägg
| Namn | |
| ID | mkafoonfjjnhnglfeiladhgnekbkggll |
| Officiell webbadress | https://chromewebstore.google.com/detail/youtube-studio-favicon/mkafoonfjjnhnglfeiladhgnekbkggll |
| Beskrivning | Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site. |
| Filstorlek | 25.87 KB |
| Antal Installationer | 1,135 |
| Aktuell Version | 0.0.1.0 |
| Senast Uppdaterad | 2023-10-10 |
| Publiceringsdatum | 2022-12-20 |
| Betyg | 3.00/5 Totalt 4 Betyg |
| Utvecklare | https://damiendavisneff.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/DamienDavisNeff/YouTubeStudioFavicon/blob/main/README.md |
| Hjälpsida URL | https://www.damiendavisneff.com/support |
| URL till Sekretesspolicy Sidan | https://github.com/DamienDavisNeff/PrivacyPolicies |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Studio Favicon",
"version": "0.0.1.0",
"description": "Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.",
"icons": {
"128": "images\/icon.png",
"48": "images\/icon_small.png"
},
"content_scripts": [
{
"js": [
"global.js",
"siteChanges.js"
],
"matches": [
"https:\/\/studio.youtube.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images\/studio\/favicon.png"
],
"matches": [
"https:\/\/studio.youtube.com\/*"
]
}
]
} | |