Netflix Channels
Create channels to watch random episodes of your favorite shows on Netflix.
什麼是Netflix Channels?
Netflix Channels是由http://jonost.me開發的Chrome擴展程式,該擴展的主要功能是“Create channels to watch random episodes of your favorite shows on Netflix.”。
擴展截圖
下載Netflix Channels擴展crx文件
下載Netflix Channels擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
| 名稱 | |
| ID | ddfeopklehndllmggeeckagkfigilonb |
| 官方網址 | https://chrome.google.com/webstore/detail/netflix-channels/ddfeopklehndllmggeeckagkfigilonb |
| 簡介 | Create channels to watch random episodes of your favorite shows on Netflix. |
| 檔案大小 | 153 KB |
| 安裝次數 | 35 |
| 目前版本 | 0.0.1 |
| 更新時間 | 2014-01-26 |
| 上架時間 | 2014-01-26 |
| 評分 | 3.50/5 共 2 次評分 |
| 開發者 | http://jonost.me |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Netflix Channels",
"version": "0.0.1",
"manifest_version": 2,
"description": "Create channels to watch random episodes of your favorite shows on Netflix.",
"homepage_url": "http:\/\/jonost.me",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src\/bg\/background.html",
"persistent": true
},
"browser_action": {
"default_icon": "icons\/icon19.png",
"default_title": "Manage Channels",
"default_popup": "src\/browser_action\/browser_action.html"
},
"permissions": [
"tabs",
"storage",
"*:\/\/*.netflix.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.netflix.com\/WiMovie\/*"
],
"css": [
"src\/inject\/inject.css"
],
"js": [
"js\/jquery\/jquery.js",
"src\/inject\/inject.js"
]
}
]
} | |