loop
looks for videos and allows you to make loops
Wat is loop?
loop is een Chrome-extensie ontwikkeld door Evaw, en de belangrijkste functie is "looks for videos and allows you to make loops".
Extensie Screenshots
Download het CRX-bestand van de extensie loop
Download loop-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
An Extension to loop video. Use cases: * replay a youtube song automatically. * replay a segment of a video you're watching over an over for analysis
Basisinformatie over de Extensie
Naam | loop |
ID | mpjplegmigckokmkmnbbfgjpepocpngj |
Officiële URL | https://chromewebstore.google.com/detail/loop/mpjplegmigckokmkmnbbfgjpepocpngj |
Beschrijving | looks for videos and allows you to make loops |
Bestandsgrootte | 7.38 MB |
Aantal Installaties | 905 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2017-12-01 |
Publicatiedatum | 2017-11-30 |
Beoordeling | 4.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Evaw |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "loop", "version": "1.0.0", "icons": { "48": "img\/icons\/icon48.png", "128": "img\/icons\/icon128.png", "300": "img\/icons\/icon300.png" }, "description": "looks for videos and allows you to make loops", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content-script.js" ], "all_frames": true } ], "background": { "scripts": [ "js\/popup.js" ] }, "options_ui": { "page": "html\/options.html", "chrome_style": true }, "browser_action": { "default_icon": "img\/icons\/icon128.png", "__default_popup": "html\/popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ] } |