Better Youtube
Save time and avoid low quality videos by previewing YouTube thumbnails with likes.
What is Better Youtube?
Better Youtube is a Chrome extension developed by sorapdev, and its main feature is "Save time and avoid low quality videos by previewing YouTube thumbnails with likes. ".
Extension Screenshots
Download Better Youtube Extension CRX File
Download Better Youtube 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
Save time and avoid low quality videos by previewing YouTube thumbnails with likes. Extension Basic Information
| Name | |
| ID | amdinigmffjbpaemnleplajdpfpnjfkd |
| Official URL | https://chrome.google.com/webstore/detail/better-youtube/amdinigmffjbpaemnleplajdpfpnjfkd |
| Description | Save time and avoid low quality videos by previewing YouTube thumbnails with likes. |
| File Size | 103 KB |
| Installation Count | 14 |
| Current Version | 1.0.2 |
| Last Updated | 2022-03-25 |
| Publish Date | 2020-10-11 |
| Rating | 4.50/5 Total 4 Ratings |
| Developer | sorapdev |
| [email protected] | |
| Payment Type | free |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Better Youtube",
"version": "1.0.2",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_icon": "icon16.png",
"default_title": "Better Youtube",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"permissions": [
"tabs",
"storage"
]
} | |