视频创作者助手

为哔哩哔哩、抖音等平台视频创作者提供数据分析、创作辅助

Wat is 视频创作者助手?

视频创作者助手 is een Chrome-extensie ontwikkeld door https://www.zhouii.com, en de belangrijkste functie is "为哔哩哔哩、抖音等平台视频创作者提供数据分析、创作辅助".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie 视频创作者助手

Download 视频创作者助手-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

                        这是一个对B站、抖音等平台的视频博主/UP主/主播很有用的插件,安装此插件后你可以拥有的功能包括但不限于:
✓ 稿件列表页数据计算
✓ 稿件列表页过万播放量展开
✓ 稿件列表页显示粉丝点击率
✓ 关闭稿件列表页翻页滚动效果
✓ 稿件数据页数据计算
✓ 播放页数据计算
更多功能正在不断添加中                    

Basisinformatie over de Extensie

Naam 视频创作者助手 视频创作者助手
ID lgnplnlpfmpbffkagibljadjbgkgmcok
Officiële URL https://chromewebstore.google.com/detail/%E8%A7%86%E9%A2%91%E5%88%9B%E4%BD%9C%E8%80%85%E5%8A%A9%E6%89%8B/lgnplnlpfmpbffkagibljadjbgkgmcok
Beschrijving 为哔哩哔哩、抖音等平台视频创作者提供数据分析、创作辅助
Bestandsgrootte 445 KB
Aantal Installaties 83
Huidige Versie 1.1
Laatst Bijgewerkt 2023-08-26
Publicatiedatum 2022-05-13
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://www.zhouii.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.zhouii.com/video-creator-helper
Help Pagina-URL https://www.zhouii.com/video-creator-helper
URL van de Privacybeleid Pagina https://www.zhouii.com/agreement.php
Ondersteunde Talen zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u89c6\u9891\u521b\u4f5c\u8005\u52a9\u624b",
    "description": "\u4e3a\u54d4\u54e9\u54d4\u54e9\u3001\u6296\u97f3\u7b49\u5e73\u53f0\u89c6\u9891\u521b\u4f5c\u8005\u63d0\u4f9b\u6570\u636e\u5206\u6790\u3001\u521b\u4f5c\u8f85\u52a9",
    "version": "1.1",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": "img\/logo.png"
    },
    "icons": {
        "128": "img\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bilibili.com\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "util.js",
                "bilibili.js"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.douyin.com\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "util.js",
                "douyin.js"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "webRequest",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*.bilibili.com\/",
        "*:\/\/*.douyin.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "bilibili_center_noscroll.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}