YouTube logo link
This extension lets you change the link of the YouTube logo.
What is YouTube logo link?
YouTube logo link is a Chrome extension developed by Lucas Bürgy, and its main feature is "This extension lets you change the link of the YouTube logo.".
Extension Screenshots
Download YouTube logo link Extension CRX File
Download YouTube logo link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
By default, it's the subscriptions page. This extension is open source and available here: https://github.com/burgyl/youtube-icon-link
Extension Basic Information
Name | YouTube logo link |
ID | kjaidkbedipdlfdecahomknafpcffoeo |
Official URL | https://chrome.google.com/webstore/detail/youtube-logo-link/kjaidkbedipdlfdecahomknafpcffoeo |
Description | This extension lets you change the link of the YouTube logo. |
File Size | 26.21 KB |
Installation Count | 109 |
Current Version | 1.0.0 |
Last Updated | 2020-12-10 |
Publish Date | 2020-12-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Lucas Bürgy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/burgyl/youtube-icon-link |
Supported Languages | 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\/" ] } |