YouTube Repeater
Repeats YouTube video after it ends.
Vad är YouTube Repeater?
YouTube Repeater är en Chrome-tillägg utvecklad av shogo, och dess huvudfunktion är "Repeats YouTube video after it ends.".
Tilläggsskärmbilder
Ladda ner YouTube Repeater-förlängningens CRX-fil
Ladda ner YouTube Repeater-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
You can make your YouTube video repeat automatically right from the page. - No external link - No need for playlists - Repeat infinitely with just 1 click ----- v.0.0.4 ----- Fixed the extension to work with the new YouTube design from fall 2018 ----- v.0.0.3 ----- Fixed the icon to show inactive when on non-youtube pages. ----- v.0.0.2 ----- Fixed icon to show the repeat status when tabs are switched.
Grundläggande Information om Tillägg
Namn | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
Beskrivning | Repeats YouTube video after it ends. |
Filstorlek | 16.98 KB |
Antal Installationer | 423 |
Aktuell Version | 0.0.4 |
Senast Uppdaterad | 2019-03-18 |
Publiceringsdatum | 2019-03-18 |
Betyg | 3.50/5 Totalt 4 Betyg |
Utvecklare | shogo |
Betalningssätt | free |
Tilläggswebbplats | http://shogo.eu/ |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "description": "Repeats YouTube video after it ends.", "version": "0.0.4", "manifest_version": 2, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "notifications", "webNavigation" ] } |