New NicoLive Helper

New NicoLive Helper

什么是New NicoLive Helper?

New NicoLive Helper是由amano开发的Chrome扩展程序,该扩展的主要功能是“New NicoLive Helper”。

扩展截图

screenshot

下载New NicoLive Helper扩展crx文件

下载New NicoLive Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ニコニコ生放送でリクエスト放送をする場合に、リクエスト管理や動画再生、コメント読み上げなど、生放送主の作業をサポートするツールです。

■更新内容
・再生中動画の取得方法を変更
・リクエスト限定で新放送での引用可否チェックを追加
・コミュニティ動画ページ内の動画IDを拾えなくなっていたのを修正
・ワンボタンとりマイを追加                    

扩展基本信息

名称 New NicoLive Helper New NicoLive Helper
ID blalnpdckjmjaimbgdigolejfomjgjnp
官方URL https://chromewebstore.google.com/detail/new-nicolive-helper/blalnpdckjmjaimbgdigolejfomjgjnp
简介 New NicoLive Helper
文件大小 708 KB
安装次数 321
当前版本 0.18
更新时间 2020-07-20
上架时间 2020-06-04
评分 5.00/5 共2次评分
开发者 amano
电子邮箱 [email protected]
付费类型 free
扩展官网 http://com.nicovideo.jp/community/co105163
帮助页面URL http://com.nicovideo.jp/community/co105163
支持的语言 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New NicoLive Helper",
    "version": "0.18",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "description": "New NicoLive Helper",
    "homepage_url": "http:\/\/com.nicovideo.jp\/community\/co105163",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "*:\/\/*.nicovideo.jp\/*",
        "https:\/\/api.twitter.com\/*",
        "contextMenus",
        "notifications",
        "storage",
        "tabs",
        "activeTab",
        "clipboardWrite",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/live.nicovideo.jp\/watch\/*",
                "*:\/\/live2.nicovideo.jp\/watch\/*"
            ],
            "js": [
                "libs\/browser-polyfill.js",
                "content_scripts\/nicolivehelperx.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/com.nicovideo.jp\/video\/*"
            ],
            "js": [
                "libs\/browser-polyfill.js",
                "libs\/utils.js",
                "content_scripts\/communityvideo.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.nicovideo.jp\/tag\/*",
                "*:\/\/www.nicovideo.jp\/search\/*",
                "*:\/\/www.nicovideo.jp\/ranking*"
            ],
            "js": [
                "libs\/browser-polyfill.js",
                "libs\/utils.js",
                "content_scripts\/nicovideosearch.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/www2.jasrac.or.jp\/eJwid\/main.jsp*"
            ],
            "js": [
                "libs\/browser-polyfill.js",
                "libs\/utils.js",
                "content_scripts\/jwidsearch.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "96": "icons\/icon-96.png"
        },
        "default_title": "New NicoLive Helper"
    },
    "background": {
        "scripts": [
            "libs\/browser-polyfill.js",
            "libs\/utils.js",
            "bg\/background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}