YouTube logo link
This extension lets you change the link of the YouTube logo.
Vad är YouTube logo link?
YouTube logo link är en Chrome-tillägg utvecklad av Lucas Bürgy, och dess huvudfunktion är "This extension lets you change the link of the YouTube logo.".
Tilläggsskärmbilder
Ladda ner YouTube logo link-förlängningens CRX-fil
Ladda ner YouTube logo link-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
By default, it's the subscriptions page.
This extension is open source and available here: https://github.com/burgyl/youtube-icon-link Grundläggande Information om Tillägg
| Namn | |
| ID | kjaidkbedipdlfdecahomknafpcffoeo |
| Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-logo-link/kjaidkbedipdlfdecahomknafpcffoeo |
| Beskrivning | This extension lets you change the link of the YouTube logo. |
| Filstorlek | 26.21 KB |
| Antal Installationer | 109 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2020-12-10 |
| Publiceringsdatum | 2020-12-10 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Lucas Bürgy |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/burgyl/youtube-icon-link |
| Stödda Språk | 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\/"
]
} | |