New NicoLive Helper

New NicoLive Helper

O que é New NicoLive Helper?

New NicoLive Helper é uma extensão do Chrome desenvolvida por amano, e sua principal característica é "New NicoLive Helper".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão New NicoLive Helper

Baixe arquivos de extensão New NicoLive Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

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

Informações Básicas da Extensão

Nome New NicoLive Helper New NicoLive Helper
ID blalnpdckjmjaimbgdigolejfomjgjnp
URL Oficial https://chromewebstore.google.com/detail/new-nicolive-helper/blalnpdckjmjaimbgdigolejfomjgjnp
Descrição New NicoLive Helper
Tamanho do Arquivo 708 KB
Contagem de Instalações 321
Versão Atual 0.18
Última Atualização 2020-07-20
Data de Publicação 2020-06-04
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor amano
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://com.nicovideo.jp/community/co105163
URL da Página de Ajuda http://com.nicovideo.jp/community/co105163
Idiomas Suportados 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
    }
}