Find.Media

Find.Media shows if a movie is streaming on Netflix, iTunes, Amazon Prime and more while you browse IMDb and Rotten Tomatoes.

什麼是Find.Media?

Find.Media是由https://find.media開發的Chrome擴展程式,該擴展的主要功能是“Find.Media shows if a movie is streaming on Netflix, iTunes, Amazon Prime and more while you browse IMDb and Rotten Tomatoes.”。

擴展截圖

screenshot
screenshot

下載Find.Media擴展crx文件

下載Find.Media擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The Find.Media Chrome Extension works in two ways:

Browse IMDb and Rotten Tomatoes like you normally would. If the movie you are on is available to rent, buy or stream, the Find.Media icon will light up and show you the sources and prices!

Type FM and [space] in your url bar to kick off a search for any Movie, Show or Person.                    

擴展基本資訊

名稱 Find.Media Find.Media
ID iaipnpgaagkidnioebpdfjnidmagbbba
官方網址 https://chrome.google.com/webstore/detail/findmedia/iaipnpgaagkidnioebpdfjnidmagbbba
簡介 Find.Media shows if a movie is streaming on Netflix, iTunes, Amazon Prime and more while you browse IMDb and Rotten Tomatoes.
檔案大小 190 KB
安裝次數 44
目前版本 0.1.1
更新時間 2016-01-28
上架時間 2016-01-28
評分 5.00/5 共 1 次評分
開發者 https://find.media
付費類型 free
擴展官網 https://find.media
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Find.Media",
    "short_name": "Find.Media",
    "description": "Find.Media shows if a movie is streaming on Netflix, iTunes, Amazon Prime and more while you browse IMDb and Rotten Tomatoes.",
    "author": "MediaHound",
    "version": "0.1.1",
    "omnibox": {
        "keyword": "fm"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "src\/background.js"
        ]
    },
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon19-off.png",
            "38": "assets\/icon38-off.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.find.media\/*"
            ],
            "js": [
                "src\/detect-fm.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.imdb.com\/*"
            ],
            "js": [
                "src\/detect-imdb.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.rottentomatoes.com\/*"
            ],
            "js": [
                "src\/detect-rt.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/sidebar.css"
            ],
            "js": [
                "src\/sidebar-host.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "webNavigation",
        ""
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+M",
                "mac": "Command+Shift+M",
                "chromeos": "Ctrl+Shift+M",
                "linux": "Ctrl+Shift+M"
            }
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}