Bilibili-Helper

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

What is Bilibili-Helper?

Bilibili-Helper is a Chrome extension developed by wansho, and its main feature is "提供一些实用的 逛B站 的小工具".

Extension Screenshots

screenshot
screenshot

Download Bilibili-Helper Extension CRX File

Download Bilibili-Helper 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

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

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

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

Extension Basic Information

Name Bilibili-Helper Bilibili-Helper
ID hdppmpnmokdiaabkhgnooeimhmbahdkm
Official URL https://chrome.google.com/webstore/detail/bilibili-helper/hdppmpnmokdiaabkhgnooeimhmbahdkm
Description 提供一些实用的 逛B站 的小工具
File Size 581 KB
Installation Count 574
Current Version 2.0
Last Updated 2020-11-09
Publish Date 2020-04-05
Rating 4.67/5 Total 3 Ratings
Developer wansho
Email [email protected]
Payment Type free
Extension Website https://github.com/wansho/bilibili-helper-chrome-extension
Supported Languages 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"
    }
}