Video Controls for Instagram
Enables video controls on instagram
Video Controls for Instagramとは何ですか?
Video Controls for InstagramはDavid Ćavarによって開発されたChromeの拡張機能で、その主な機能は「Enables video controls on instagram」です。
拡張機能のスクリーンショット
Video Controls for Instagram拡張機能のCRXファイルをダウンロード
Video Controls for Instagram拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Enables controls for videos inside your Instagram feed (seek, full screen, volume change, play, pause) Defaults video volume to 50%, and saves the setting if changed
拡張機能の基本情報
名前 | |
ID | fbfifojpjhfeiiefgbddgkabhjhkofkf |
公式URL | https://chrome.google.com/webstore/detail/video-controls-for-instag/fbfifojpjhfeiiefgbddgkabhjhkofkf |
説明 | Enables video controls on instagram |
ファイルサイズ | 12.9 KB |
インストール数 | 183 |
現在のバージョン | 1.3.0 |
最終更新日 | 2019-11-21 |
公開日 | 2019-11-21 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | David Ćavar |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Palethorn/video-controls-for-instagram |
ヘルプページのURL | https://github.com/Palethorn/video-controls-for-instagram/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Controls for Instagram", "version": "1.3.0", "manifest_version": 2, "applications": { "gecko": { "id": "[email protected]" } }, "description": "Enables video controls on instagram", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "menu.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.instagram.com\/*", "https:\/\/www.instagram.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |