Stop Youtube Autoplay Timer
This extension allows you to set a timer on Youtube's Autoplay
Vad är Stop Youtube Autoplay Timer?
Stop Youtube Autoplay Timer är en Chrome-tillägg utvecklad av park8, och dess huvudfunktion är "This extension allows you to set a timer on Youtube's Autoplay".
Tilläggsskärmbilder
Ladda ner Stop Youtube Autoplay Timer-förlängningens CRX-fil
Ladda ner Stop Youtube Autoplay Timer-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
Do you fall asleep to Youtube videos on autoplay and wake up to still find Youtube videos playing? This extension will allow you to set a timer on the autoplay toggle so videos will stop auto playing Grundläggande Information om Tillägg
| Namn | |
| ID | amklgdeinpjclemjbepgimpkaknhfaem |
| Officiell webbadress | https://chromewebstore.google.com/detail/stop-youtube-autoplay-tim/amklgdeinpjclemjbepgimpkaknhfaem |
| Beskrivning | This extension allows you to set a timer on Youtube's Autoplay |
| Filstorlek | 59.76 KB |
| Antal Installationer | 95 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2020-08-19 |
| Publiceringsdatum | 2020-08-17 |
| Utvecklare | park8 |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"matches": [
"https:\/\/www.youtube.com\/watch*",
"http:\/\/www.youtube.com\/watch*"
],
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "widget.html"
},
"icons": {
"128": "res\/icon128.png"
},
"description": "This extension allows you to set a timer on Youtube's Autoplay",
"manifest_version": 2,
"name": "Stop Youtube Autoplay Timer",
"permissions": [
"activeTab",
"storage",
"tabs",
"https:\/\/www.youtube.com\/*",
"http:\/\/www.youtube.com\/*"
],
"short_name": "Timed Autoplay",
"version": "1.1"
} | |