loop
looks for videos and allows you to make loops
Was ist loop?
loop ist eine Chrome-Erweiterung, die von Evaw entwickelt wurde, und ihr Hauptmerkmal ist "looks for videos and allows you to make loops".
Erweiterungsscreenshots
loop-Erweiterungs-CRX-Datei herunterladen
Laden Sie loop-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | loop |
ID | mpjplegmigckokmkmnbbfgjpepocpngj |
Offizielle URL | https://chromewebstore.google.com/detail/loop/mpjplegmigckokmkmnbbfgjpepocpngj |
Beschreibung | looks for videos and allows you to make loops |
Dateigröße | 7.38 MB |
Installationsanzahl | 905 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2017-12-01 |
Veröffentlichungsdatum | 2017-11-30 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | Evaw |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |