Video Pop Out
This extension pulls videos out from the current page and into a new, properly-sized browser window.
Video Pop Outとは何ですか?
Video Pop Outはhttp://gerriediaz.comによって開発されたChromeの拡張機能で、その主な機能は「This extension pulls videos out from the current page and into a new, properly-sized browser window.」です。
拡張機能のスクリーンショット
Video Pop Out拡張機能のCRXファイルをダウンロード
Video Pop Out拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Click on the "P" badge to open the video in a new window!
拡張機能の基本情報
名前 | |
ID | akmopdkahcllfmaicplhmlglmencblfj |
公式URL | https://chrome.google.com/webstore/detail/video-pop-out/akmopdkahcllfmaicplhmlglmencblfj |
説明 | This extension pulls videos out from the current page and into a new, properly-sized browser window. |
ファイルサイズ | 42.47 KB |
インストール数 | 252 |
現在のバージョン | 0.3.1 |
最終更新日 | 2016-03-19 |
公開日 | 2016-03-19 |
評価 | 2.25/5 合計 4 レビュー |
開発者 | http://gerriediaz.com |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Pop Out", "description": "This extension pulls videos out from the current page and into a new, properly-sized browser window.", "version": "0.3.1", "browser_action": { "default_icon": "icon.png", "default_title": "Video Pop Out" }, "content_scripts": [ { "matches": [ "*:\/\/espn.go.com\/*" ], "js": [ "jquery-2.2.0.min.js", "content.js" ], "css": [ "main.css" ] } ], "background": { "scripts": [ "jquery-2.2.0.min.js", "background.js" ] }, "permissions": [ "activeTab" ] } |