Watch Later button
Add a quick way to save videos to Watch Later on YouTube
Was ist Watch Later button?
Watch Later button ist eine Chrome-Erweiterung, die von Pletnov Alex entwickelt wurde, und ihr Hauptmerkmal ist "Add a quick way to save videos to Watch Later on YouTube".
Erweiterungsscreenshots
Watch Later button-Erweiterungs-CRX-Datei herunterladen
Laden Sie Watch Later button-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
Quick way to add video to "Watch Later.."
Add a quick way to save videos to Watch Later on YouTube.
Minimal. Simple.
YouTube™ is a trademark of Google Inc.
Use of this trademark is subject to Google Permissions. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | igehcnnhegiagilpnablldbbcnjabkab |
| Offizielle URL | https://chromewebstore.google.com/detail/watch-later-button/igehcnnhegiagilpnablldbbcnjabkab |
| Beschreibung | Add a quick way to save videos to Watch Later on YouTube |
| Dateigröße | 88.67 KB |
| Installationsanzahl | 54 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2023-12-26 |
| Veröffentlichungsdatum | 2022-12-15 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | Pletnov Alex |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Watch Later button",
"description": "Add a quick way to save videos to Watch Later on YouTube",
"version": "1.1",
"author": "@2thecrow",
"icons": {
"16": "assets\/icons\/red\/iconmonstr-text-plus-lined-16.png",
"32": "assets\/icons\/red\/iconmonstr-text-plus-lined-32.png",
"48": "assets\/icons\/red\/iconmonstr-text-plus-lined-48.png",
"128": "assets\/icons\/red\/iconmonstr-text-plus-lined-120.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"css": [
"assets\/styles\/style.css"
],
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"js\/saveto.js"
]
}
]
} | |