Netflix豆瓣电影助手
帮助你快速获取Netflix电影的豆瓣评分;一键搜索和加载SRT格式字幕。
Cos'è Netflix豆瓣电影助手?
Netflix豆瓣电影助手 è un'estensione di Chrome sviluppata da AnthonyJ, e la sua funzione principale è "帮助你快速获取Netflix电影的豆瓣评分;一键搜索和加载SRT格式字幕。".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Netflix豆瓣电影助手
Scarica i file di estensione Netflix豆瓣电影助手 in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
功能概览: 1. 将豆瓣评分和豆瓣电影信息植入Netflix的电影浏览页面(把鼠标停在电影图片上)。显示的信息包括: - 评分 - 看过人数 - 电影中文名 - 电影中文分类 2. 点击插件图标查看正在播放的Netflix电影信息,一键进入相关电影的豆瓣页面。 3. 支持加载SRT格式的字幕。 4. 随时随地通过插件在豆瓣电影上搜索电影信息,一键进入豆瓣电影或Netflix.com。 更新内容: v3.1.3 1. Bug fix. v3.1.2 1. Removed unnecessary permissions ("zimuku.cn", "movie.douban.com" and "Download") v3.1.1 1. Fixed a bug causing browser action does not show movie info. v3.1 1. 豆瓣电影搜索框。 2. No more Chrome console spam. 注: 1. 若豆瓣信息或字幕没有加载成功,请尝试刷新页面。 2. 此应用为个人业余开发,测试不全面。如果发现BUG或是有功能建议,欢迎在谷歌商店页面提交。也欢迎来开源页面一起探讨: https://github.com/tmxkn1/RateMeNetflix
Informazioni di Base sull'Estensione
Nome | Netflix豆瓣电影助手 |
ID | mjakjepikaimbcpnnlcconeagmmbkpaa |
URL Ufficiale | https://chromewebstore.google.com/detail/netflix%E8%B1%86%E7%93%A3%E7%94%B5%E5%BD%B1%E5%8A%A9%E6%89%8B/mjakjepikaimbcpnnlcconeagmmbkpaa |
Descrizione | 帮助你快速获取Netflix电影的豆瓣评分;一键搜索和加载SRT格式字幕。 |
Dimensione del File | 76.82 KB |
Conteggio Installazioni | 455 |
Versione Corrente | 3.1.3 |
Ultimo Aggiornamento | 2018-12-09 |
Data di Pubblicazione | 2018-12-09 |
Valutazione | 2.17/5 Totale 6 Valutazioni |
Sviluppatore | AnthonyJ |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tmxkn1/RateMeNetflix |
URL della Pagina di Aiuto | https://github.com/tmxkn1/RateMeNetflix/issues |
Lingue Supportate | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix\u8c46\u74e3\u7535\u5f71\u52a9\u624b", "short_name": "Netflix-\u8c46\u74e3", "version": "3.1.3", "description": "\u5e2e\u52a9\u4f60\u5feb\u901f\u83b7\u53d6Netflix\u7535\u5f71\u7684\u8c46\u74e3\u8bc4\u5206\uff1b\u4e00\u952e\u641c\u7d22\u548c\u52a0\u8f7dSRT\u683c\u5f0f\u5b57\u5e55\u3002", "icons": { "16": "img\/[email protected]", "24": "img\/[email protected]", "32": "img\/[email protected]", "48": "img\/[email protected]", "128": "img\/[email protected]" }, "background": { "scripts": [ "js\/background\/onMessage.js", "js\/background\/background.js", "js\/background\/rating\/rating.js", "js\/background\/rating\/douban.js", "js\/background\/subtitleParser.js", "js\/console.js", "js\/Exception.js", "test\/netflix.js" ] }, "browser_action": { "default_title": "Netflix\u8c46\u74e3\u7535\u5f71\u52a9\u624b", "default_popup": "browserAction.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.netflix.com\/*", "file:\/\/\/*.netflix.com\/*" ], "js": [ "js\/external\/jquery-3.1.1.min.js", "js\/contentScript.js", "js\/extract.js", "js\/injectRating.js", "js\/listContents.js", "js\/playerContents.js", "js\/injectSubtitle.js", "js\/console.js" ], "css": [ "listContents.css" ] } ], "permissions": [ "activeTab", "tabs", "https:\/\/*.netflix.com\/*", "https:\/\/api.douban.com\/v2\/movie*" ], "web_accessible_resources": [ "img\/doubanLogo16x16.png", "img\/doubanLogo48x48.png" ] } |