Netflix豆瓣电影助手

帮助你快速获取Netflix电影的豆瓣评分;一键搜索和加载SRT格式字幕。

What is Netflix豆瓣电影助手?

Netflix豆瓣电影助手 is a Chrome extension developed by AnthonyJ, and its main feature is "帮助你快速获取Netflix电影的豆瓣评分;一键搜索和加载SRT格式字幕。".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Netflix豆瓣电影助手 Extension CRX File

Download Netflix豆瓣电影助手 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        功能概览:
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                    

Extension Basic Information

Name Netflix豆瓣电影助手 Netflix豆瓣电影助手
ID mjakjepikaimbcpnnlcconeagmmbkpaa
Official URL 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
Description 帮助你快速获取Netflix电影的豆瓣评分;一键搜索和加载SRT格式字幕。
File Size 76.82 KB
Installation Count 455
Current Version 3.1.3
Last Updated 2018-12-09
Publish Date 2018-12-09
Rating 2.17/5 Total 6 Ratings
Developer AnthonyJ
Payment Type free
Extension Website https://github.com/tmxkn1/RateMeNetflix
Help Page URL https://github.com/tmxkn1/RateMeNetflix/issues
Supported Languages 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"
    ]
}