iCheckNetflixPlus
Searches Netflix for movies in iCheckMovies top lists.
iCheckNetflixPlusとは何ですか?
iCheckNetflixPlusはGavin Harrisonによって開発されたChromeの拡張機能で、その主な機能は「Searches Netflix for movies in iCheckMovies top lists.」です。
拡張機能のスクリーンショット
iCheckNetflixPlus拡張機能のCRXファイルをダウンロード
iCheckNetflixPlus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds links to Netflix pages for the unchecked movies in iCheckMovies.com top lists, movie pages and search pages.
Must be logged into netflix.com for the extension to work. If a movie is not found, or not available, links to the Netflix search page, or Netflix movie page are still added.
Update 3.0.1 (12/20/2014)
Added links to /movies/unchecked/
Update 3.0 (12/16/2014)
Complete re-write. 拡張機能の基本情報
| 名前 | |
| ID | jeinanillnkehhekcipjggepagfdkpjb |
| 公式URL | https://chromewebstore.google.com/detail/ichecknetflixplus/jeinanillnkehhekcipjggepagfdkpjb |
| 説明 | Searches Netflix for movies in iCheckMovies top lists. |
| ファイルサイズ | 277 KB |
| インストール数 | 76 |
| 現在のバージョン | 3.0.1 |
| 最終更新日 | 2014-12-21 |
| 公開日 | 2014-12-20 |
| 評価 | 3.25/5 合計 4 レビュー |
| 開発者 | Gavin Harrison |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "iCheckNetflixPlus",
"version": "3.0.1",
"description": "Searches Netflix for movies in iCheckMovies top lists.",
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"bower_components\/jquery\/dist\/jquery.min.js",
"bower_components\/jquery\/dist\/jquery.min.map",
"bower_components\/underscore\/underscore-min.js",
"bower_components\/underscore\/underscore-min.map"
],
"background": {
"scripts": [
"bower_components\/jquery\/dist\/jquery.min.js",
"bower_components\/underscore\/underscore-min.js",
"bg.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.icheckmovies.com\/lists\/*"
],
"css": [
"list.css"
],
"js": [
"bower_components\/jquery\/dist\/jquery.min.js",
"bower_components\/underscore\/underscore-min.js",
"list.js"
]
},
{
"matches": [
"https:\/\/www.icheckmovies.com\/movies\/unchecked\/*"
],
"css": [
"list.css"
],
"js": [
"bower_components\/jquery\/dist\/jquery.min.js",
"bower_components\/underscore\/underscore-min.js",
"list.js"
]
},
{
"matches": [
"https:\/\/www.icheckmovies.com\/movies\/*"
],
"css": [
"movie.css"
],
"js": [
"bower_components\/jquery\/dist\/jquery.min.js",
"bower_components\/underscore\/underscore-min.js",
"movie.js"
]
}
],
"permissions": [
"https:\/\/www.icheckmovies.com\/*",
"http:\/\/www.icheckmovies.com\/*",
"https:\/\/*.netflix.com\/*",
"http:\/\/*.netflix.com\/*"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |