Bilibili-Helper

提供一些实用的 逛B站 的小工具

Wat is Bilibili-Helper?

Bilibili-Helper is een Chrome-extensie ontwikkeld door wansho, en de belangrijkste functie is "提供一些实用的 逛B站 的小工具".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Bilibili-Helper

Download Bilibili-Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        哔哩哔哩网站助手,可以显示每个视频的弹幕热度,帮助你准确定位视频高能时刻。

使用方法,进入 Bilibili 网站,打开一个视频(非番剧),等待视频加载完成后,弹幕热度就会自动加载到视频下面。

Github: https://github.com/wansho/bilibili-helper-chrome-extension                    

Basisinformatie over de Extensie

Naam Bilibili-Helper Bilibili-Helper
ID hdppmpnmokdiaabkhgnooeimhmbahdkm
Officiële URL https://chrome.google.com/webstore/detail/bilibili-helper/hdppmpnmokdiaabkhgnooeimhmbahdkm
Beschrijving 提供一些实用的 逛B站 的小工具
Bestandsgrootte 581 KB
Aantal Installaties 574
Huidige Versie 2.0
Laatst Bijgewerkt 2020-11-09
Publicatiedatum 2020-04-05
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar wansho
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/wansho/bilibili-helper-chrome-extension
Ondersteunde Talen en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "zh_CN",
    "version": "2.0",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/127.0.0.1:8000\/*",
        "http:\/\/bili.wansho.top\/*"
    ],
    "background": {
        "scripts": [
            "static\/js\/jquery-2.0.3.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "static\/images\/16.png",
            "32": "static\/images\/32.png",
            "48": "static\/images\/48.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.bilibili.com\/video\/av*",
                "https:\/\/www.bilibili.com\/video\/BV*"
            ],
            "js": [
                "static\/js\/jquery-2.0.3.min.js",
                "static\/js\/echarts.min.js",
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "static\/images\/16.png",
        "32": "static\/images\/32.png",
        "48": "static\/images\/48.png"
    }
}