Watch Later button
Add a quick way to save videos to Watch Later on YouTube
Vad är Watch Later button?
Watch Later button är en Chrome-tillägg utvecklad av Pletnov Alex, och dess huvudfunktion är "Add a quick way to save videos to Watch Later on YouTube".
Tilläggsskärmbilder
Ladda ner Watch Later button-förlängningens CRX-fil
Ladda ner Watch Later button-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
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. Grundläggande Information om Tillägg
| Namn | |
| ID | igehcnnhegiagilpnablldbbcnjabkab |
| Officiell webbadress | https://chromewebstore.google.com/detail/watch-later-button/igehcnnhegiagilpnablldbbcnjabkab |
| Beskrivning | Add a quick way to save videos to Watch Later on YouTube |
| Filstorlek | 88.67 KB |
| Antal Installationer | 54 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2023-12-26 |
| Publiceringsdatum | 2022-12-15 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | Pletnov Alex |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |