Where to watch - Playpilot/IMDb
Adds a link on a movie's IMDb page where it is possible to see where to watch it.
Where to watch - Playpilot/IMDb là gì?
Where to watch - Playpilot/IMDb là một tiện ích mở rộng Chrome được phát triển bởi Tobias Skarhed, và tính năng chính của nó là "Adds a link on a movie's IMDb page where it is possible to see where to watch it.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Where to watch - Playpilot/IMDb
Tải xuống các tệp mở rộng Where to watch - Playpilot/IMDb 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
Adds a quick link from an IMDb movie page to Playpilot, where you quickly can find where to stream or buy the movie.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Where to watch - Playpilot/IMDb |
ID | gbkcbeadggmaepdjjpikfneiipcldfjd |
URL Chính Thức | https://chromewebstore.google.com/detail/where-to-watch-playpiloti/gbkcbeadggmaepdjjpikfneiipcldfjd |
Mô tả | Adds a link on a movie's IMDb page where it is possible to see where to watch it. |
Kích Thước Tệp | 198 KB |
Số Lần Cài Đặt | 38 |
Phiên Bản Hiện Tại | 0.2.2 |
Cập Nhật Lần Cuối | 2021-04-13 |
Ngày Phát Hành | 2021-03-09 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Tobias Skarhed |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tskarhed/playpilot-imdb-extension |
URL Trang Trợ Giúp | https://github.com/tskarhed/playpilot-imdb-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Where to watch - Playpilot\/IMDb", "description": "Adds a link on a movie's IMDb page where it is possible to see where to watch it.", "version": "0.2.2", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "host_permissions": [ "https:\/\/atlas.playpilot.com\/api\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.imdb.com\/title\/*" ], "js": [ "contentScript.js" ], "css": [ "styles.css" ] } ], "background": { "service_worker": "background.js" } } |