loop
looks for videos and allows you to make loops
loopとは何ですか?
loopはEvawによって開発されたChromeの拡張機能で、その主な機能は「looks for videos and allows you to make loops」です。
拡張機能のスクリーンショット
loop拡張機能のCRXファイルをダウンロード
loop拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | loop |
ID | mpjplegmigckokmkmnbbfgjpepocpngj |
公式URL | https://chromewebstore.google.com/detail/loop/mpjplegmigckokmkmnbbfgjpepocpngj |
説明 | looks for videos and allows you to make loops |
ファイルサイズ | 7.38 MB |
インストール数 | 905 |
現在のバージョン | 1.0.0 |
最終更新日 | 2017-12-01 |
公開日 | 2017-11-30 |
評価 | 4.00/5 合計 4 レビュー |
開発者 | Evaw |
支払い方法 | free |
対応言語 | 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" ] } |