Simple YouTube Loop
Simple, clean way to loop a YouTube video.
Vad är Simple YouTube Loop?
Simple YouTube Loop är en Chrome-tillägg utvecklad av mihelcic, och dess huvudfunktion är "Simple, clean way to loop a YouTube video.".
Tilläggsskärmbilder
Ladda ner Simple YouTube Loop-förlängningens CRX-fil
Ladda ner Simple YouTube Loop-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
This extension provides a simple YouTube loop button, on your HTML5 video controls bar. Nothing more. Grundläggande Information om Tillägg
| Namn | |
| ID | bfhmecnhdehblbnadegfpbmmbbobkjff |
| Officiell webbadress | https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff |
| Beskrivning | Simple, clean way to loop a YouTube video. |
| Filstorlek | 39.23 KB |
| Antal Installationer | 1,172 |
| Aktuell Version | 0.6 |
| Senast Uppdaterad | 2017-09-07 |
| Publiceringsdatum | 2017-09-07 |
| Betyg | 4.58/5 Totalt 26 Betyg |
| Utvecklare | mihelcic |
| Betalningssätt | free |
| Stödda Språk | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Simple YouTube Loop",
"short_name": "YouTube Loop",
"description": "Simple, clean way to loop a YouTube video.",
"version": "0.6",
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"js\/jq.js",
"js\/content.js"
]
}
],
"icons": {
"19": "images\/icon_19.png",
"38": "images\/icon_38.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"background": {
"persistent": false,
"scripts": [
"js\/bg.js"
]
},
"page_action": {
"default_icon": {
"19": "images\/icon_19.png",
"38": "images\/icon_38.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"default_title": "Simple YouTube Loop"
},
"permissions": [
"tabs"
]
} | |