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 là gì?

Find.Media là một tiện ích mở rộng Chrome được phát triển bởi https://find.media, và tính năng chính của nó là "Find.Media shows if a movie is streaming on Netflix, iTunes, Amazon Prime and more while you browse IMDb and Rotten Tomatoes.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Find.Media

Tải xuống các tệp mở rộng Find.Media dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Find.Media Find.Media
ID iaipnpgaagkidnioebpdfjnidmagbbba
URL Chính Thức https://chrome.google.com/webstore/detail/findmedia/iaipnpgaagkidnioebpdfjnidmagbbba
Mô tả Find.Media shows if a movie is streaming on Netflix, iTunes, Amazon Prime and more while you browse IMDb and Rotten Tomatoes.
Kích Thước Tệp 190 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2016-01-28
Ngày Phát Hành 2016-01-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://find.media
Loại Thanh Toán free
Trang Web Mở Rộng https://find.media
Ngôn Ngữ Được Hỗ Trợ 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'"
}