Movie Ratings
Retrieve movie ratings from Rotten Tomatoes.
什麼是Movie Ratings?
Movie Ratings是由Ronak Patel開發的Chrome擴展程式,該擴展的主要功能是“Retrieve movie ratings from Rotten Tomatoes.”。
擴展截圖
下載Movie Ratings擴展crx文件
下載Movie Ratings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Movie Ratings lets you view the Rotten Tomatoes and IMDb ratings for a movie. All you have to do is highlight the name of a movie, right click, and select "Get Movie Rating" (you can also right click on a link). After installing the extension the tabs currently opened will need to be reloaded.
擴展基本資訊
名稱 | |
ID | pfmcppclannbbilgigjlodcjkkohjiom |
官方網址 | https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom |
簡介 | Retrieve movie ratings from Rotten Tomatoes. |
檔案大小 | 80.87 KB |
安裝次數 | 194 |
目前版本 | 1.6.2 |
更新時間 | 2015-01-18 |
上架時間 | 2015-01-18 |
評分 | 3.00/5 共 13 次評分 |
開發者 | Ronak Patel |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Movie Ratings", "version": "1.6.2", "description": "Retrieve movie ratings from Rotten Tomatoes.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "page": "background.html" }, "permissions": [ "contextMenus", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "listeners.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "display.html", "display.js", "config.js", "listeners.js", "lib\/*.js" ], "content_security_policy": "script-src 'self' https:\/\/rt-fetcher.herokuapp.com; object-src 'self'" } |