BewlyBewly

Just make a few small changes to your Bilibili homepage.

BewlyBewly란 무엇입니까?

BewlyBewly은(는) Hakadao에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Just make a few small changes to your Bilibili homepage."입니다.

확장 프로그램 스크린샷

screenshot

BewlyBewly 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Improve your Bilibili homepage by redesigning it, adding more features, and personalizing it to match your preferences.                    

확장 프로그램 기본 정보

이름 BewlyBewly BewlyBewly
ID bbbiejemhfihiooipfcjmjmbfdmobobp
공식 URL https://chromewebstore.google.com/detail/bewlybewly/bbbiejemhfihiooipfcjmjmbfdmobobp
설명 Just make a few small changes to your Bilibili homepage.
파일 크기 578 KB
설치 횟수 9,000
현재 버전 0.14.9
최근 업데이트 2024-03-03
출시 날짜 2023-04-22
평점 4.98/5 총 53 개의 평점
개발자 Hakadao
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hakadao/BewlyBewly
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BewlyBewly",
    "version": "0.14.9",
    "description": "Just make a few small changes to your Bilibili homepage.",
    "homepage_url": "https:\/\/github.com\/hakadao\/BewlyBewly",
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icon-512.png",
        "48": ".\/assets\/icon-512.png",
        "128": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "scripting",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*.bilibili.com\/*",
        "*:\/\/*.mcbbs.net\/*",
        "*:\/\/*.hdslb.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.bilibili.com\/*",
                "*:\/\/search.bilibili.com\/*",
                "*:\/\/t.bilibili.com\/*",
                "*:\/\/space.bilibili.com\/*",
                "*:\/\/message.bilibili.com\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ],
            "run_at": "document_start",
            "match_about_blank": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "assets\/rules.json"
            }
        ]
    }
}