ShuffleFlix - Netflix Random Episode Button
This chrome extension adds a random episode button to Netflix.
什麼是ShuffleFlix - Netflix Random Episode Button?
ShuffleFlix - Netflix Random Episode Button是由https://www.flixed.io開發的Chrome擴展程式,該擴展的主要功能是“This chrome extension adds a random episode button to Netflix.”。
擴展截圖
下載ShuffleFlix - Netflix Random Episode Button擴展crx文件
下載ShuffleFlix - Netflix Random Episode Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Here's how you use ShuffleFlix.
1. Install the extension.
2. Click on any TV show. Next to "Episodes" you should see a "Random Episode" button.
3. If you're in the middle of playing an episode, you'll se a new button in the bottom right corner of the screen. It should look like two twin arrows. Click it, and you can switch to a random episode from there too.
Enjoy!
Developed by Flixed.io - A one-stop shop for learning about streaming and cord-cutting. 擴展基本資訊
| 名稱 | |
| ID | copfkimibpnfpdggfjencnehgfgmpphf |
| 官方網址 | https://chromewebstore.google.com/detail/shuffleflix-netflix-rando/copfkimibpnfpdggfjencnehgfgmpphf |
| 簡介 | This chrome extension adds a random episode button to Netflix. |
| 檔案大小 | 423 KB |
| 安裝次數 | 1,659 |
| 目前版本 | 1.0.0 |
| 更新時間 | 2019-06-16 |
| 上架時間 | 2019-06-16 |
| 評分 | 3.72/5 共 18 次評分 |
| 開發者 | https://www.flixed.io |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://flixed.io |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ShuffleFlix - Netflix Random Episode Button",
"version": "1.0.0",
"version_name": "1.0.0",
"description": "This chrome extension adds a random episode button to Netflix.",
"icons": {
"128": "\/img\/logo.png"
},
"browser_action": {
"default_icon": "\/img\/logo.png",
"default_popup": "\/pages\/popup\/index.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.netflix.com\/*"
],
"js": [
"\/js\/main_content_script.js"
]
}
],
"permissions": [
"https:\/\/www.netflix.com\/*"
],
"web_accessible_resources": [
"\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/connect.facebook.net; object-src 'self'"
} | |