loop
looks for videos and allows you to make loops
What is loop?
loop is a Chrome extension developed by Evaw, and its main feature is "looks for videos and allows you to make loops".
Extension Screenshots
Download loop Extension CRX File
Download loop extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | loop |
ID | mpjplegmigckokmkmnbbfgjpepocpngj |
Official URL | https://chromewebstore.google.com/detail/loop/mpjplegmigckokmkmnbbfgjpepocpngj |
Description | looks for videos and allows you to make loops |
File Size | 7.38 MB |
Installation Count | 905 |
Current Version | 1.0.0 |
Last Updated | 2017-12-01 |
Publish Date | 2017-11-30 |
Rating | 4.00/5 Total 4 Ratings |
Developer | Evaw |
Payment Type | free |
Supported Languages | 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" ] } |