Go PopOut!
PopOut video player on some websites
什麼是Go PopOut!?
Go PopOut!是由tranceduck開發的Chrome擴展程式,該擴展的主要功能是“PopOut video player on some websites”。
擴展截圖
下載Go PopOut!擴展crx文件
下載Go PopOut!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Go PopOut! will enable a 'pop out' icon inline with video controls on some sites like YouTube and Twitch that will pop out the current video on a separate window. Look for it and enjoy.
Due to Chrome limitations is not possible to keep the pop out window in front of other windows or always visible. 擴展基本資訊
| 名稱 | |
| ID | gkancbhpmeiamiljkcfajhebcimjjbie |
| 官方網址 | https://chromewebstore.google.com/detail/go-popout/gkancbhpmeiamiljkcfajhebcimjjbie |
| 簡介 | PopOut video player on some websites |
| 檔案大小 | 19.89 KB |
| 安裝次數 | 5,031 |
| 目前版本 | 2.1.2 |
| 更新時間 | 2018-12-14 |
| 上架時間 | 2018-12-14 |
| 評分 | 3.12/5 共 43 次評分 |
| 開發者 | tranceduck |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Go PopOut!",
"description": "PopOut video player on some websites",
"version": "2.1.2",
"background": {
"scripts": [
"scripts\/core\/core.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "images\/icon-19.png",
"default_title": "Go PopOut!",
"default_popup": "views\/options.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.twitch.tv\/*",
"*:\/\/*.netflix.com\/*",
"*:\/\/*.vimeo.com\/*",
"*:\/\/*.amazon.com\/*",
"*:\/\/*.ted.com\/*",
"*:\/\/*.dailymotion.com\/*",
"*:\/\/*.metacafe.com\/*",
"*:\/\/*.nasa.gov\/*",
"*:\/\/*.ustream.tv\/*"
],
"js": [
"scripts\/content_scripts\/content.js"
],
"css": [
"styles\/pip.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"scripts\/content_scripts\/content.js",
"server\/supported-websites.json",
"styles\/pip.css",
"images\/go-pip.white.svg",
"images\/go-pip.black.svg",
"images\/go-pip.grey.svg",
"images\/transparent.gif"
],
"permissions": [
"tabs",
"storage",
"webNavigation",
"*:\/\/*.youtube.com\/watch*",
"*:\/\/*.twitch.tv\/*",
"*:\/\/*.netflix.com\/*",
"*:\/\/*.vimeo.com\/*",
"*:\/\/*.amazon.com\/*",
"*:\/\/*.ted.com\/*",
"*:\/\/*.dailymotion.com\/*",
"*:\/\/*.metacafe.com\/*",
"*:\/\/*.nasa.gov\/*",
"*:\/\/*.ustream.tv\/*"
],
"icons": {
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
}
} | |