IMDb Movie Search

Search for any movie and display its related information.

IMDb Movie Searchคืออะไร?

IMDb Movie Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AMZ Developers และคุณลักษณะหลักของมันคือ "Search for any movie and display its related information."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IMDb Movie Search

ดาวน์โหลดไฟล์ส่วนขยาย IMDb Movie Search ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Looking for a hassle-free way to search for your favorite movies and TV shows? Look no further than IMDb Movie Search - the ultimate Chrome extension for movie lovers!

With IMDb Movie Search, you can easily search for any movie or TV show and access all the related information without leaving your browser. Simply highlight the name of the movie or TV show you want to search for and right-click to get an option to search on IMDb. Or, use the convenient "Alt+M" keyboard shortcut. Want to search directly from the extension? No problem! Just enter the name of the movie or TV show into the search bar and hit enter.

But that's not all - with IMDb Movie Search, you can even select text on a webpage, open the extension, and get detailed information about the movie, including its title, year of release, rating, plot summary, cast and crew, and more. Plus, you can click on the poster to view the title directly on IMDb.

So why wait? Install IMDb Movie Search today and elevate your movie-watching experience to the next level!

Note:
This extension uses OMDb API and you need an API key.
Generate the same from https://www.omdbapi.com. A free version of the API key allows 1000 requests per day.
Save the key in Extension option (chrome://extensions/ --> Details --> Extension options OR Right Click on extension --> Options)

Disclaimer:
IMDb Movie Search extension uses OMDb API to search for titles and get its related information.
It is not affialiated to or endorsed by OMDb, IMDb and any third party.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ IMDb Movie Search IMDb Movie Search
ID egabglmdedhdebfhabfphfkibcaceknn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/imdb-movie-search/egabglmdedhdebfhabfphfkibcaceknn
คำอธิบาย Search for any movie and display its related information.
ขนาดไฟล์ 75.2 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-11-10
วันที่เผยแพร่ 2023-03-06
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา AMZ Developers
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDb Movie Search",
    "version": "1.0.1",
    "description": "Search for any movie and display its related information.",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/www.omdbapi.com\/*"
    ],
    "commands": {
        "search-imdb": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Search IMDb for selected text"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup\/popup.js"
            ]
        }
    ]
}