YouTube Repeat
Repeats a YouTube video
Vad är YouTube Repeat?
YouTube Repeat är en Chrome-tillägg utvecklad av Jimmy Fu, och dess huvudfunktion är "Repeats a YouTube video".
Tilläggsskärmbilder
Ladda ner YouTube Repeat-förlängningens CRX-fil
Ladda ner YouTube Repeat-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
Minimalistic extension for replaying YouTube videos. Instructions: 1) Open a YouTube video 2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused) 3) Press it to enable or disable
Grundläggande Information om Tillägg
Namn | YouTube Repeat |
ID | bijjfhgimphjklllkmbdapkfemdnhmpj |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj |
Beskrivning | Repeats a YouTube video |
Filstorlek | 24.45 KB |
Antal Installationer | 2,323 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2015-10-09 |
Publiceringsdatum | 2015-10-08 |
Betyg | 4.37/5 Totalt 35 Betyg |
Utvecklare | Jimmy Fu |
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": 2, "name": "YouTube Repeat", "short_name": "Repeat", "description": "Repeats a YouTube video", "version": "1.1", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon.png", "default_title": "Repeat" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |