YouTube logo link
This extension lets you change the link of the YouTube logo.
Was ist YouTube logo link?
YouTube logo link ist eine Chrome-Erweiterung, die von Lucas Bürgy entwickelt wurde, und ihr Hauptmerkmal ist "This extension lets you change the link of the YouTube logo.".
Erweiterungsscreenshots
YouTube logo link-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube logo link-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
By default, it's the subscriptions page.
This extension is open source and available here: https://github.com/burgyl/youtube-icon-link Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kjaidkbedipdlfdecahomknafpcffoeo |
| Offizielle URL | https://chrome.google.com/webstore/detail/youtube-logo-link/kjaidkbedipdlfdecahomknafpcffoeo |
| Beschreibung | This extension lets you change the link of the YouTube logo. |
| Dateigröße | 26.21 KB |
| Installationsanzahl | 109 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2020-12-10 |
| Veröffentlichungsdatum | 2020-12-10 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Lucas Bürgy |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/burgyl/youtube-icon-link |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube logo link",
"description": "This extension lets you change the link of the YouTube logo.",
"version": "1.0.0",
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"webNavigation",
"tabs",
"storage",
"http:\/\/*.youtube.com\/",
"https:\/\/*.youtube.com\/"
]
} | |