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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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'"
}