视频创作者助手
为哔哩哔哩、抖音等平台视频创作者提供数据分析、创作辅助
What is 视频创作者助手?
视频创作者助手 is a Chrome extension developed by https://www.zhouii.com, and its main feature is "为哔哩哔哩、抖音等平台视频创作者提供数据分析、创作辅助".
Extension Screenshots
Download 视频创作者助手 Extension CRX File
Download 视频创作者助手 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
这是一个对B站、抖音等平台的视频博主/UP主/主播很有用的插件,安装此插件后你可以拥有的功能包括但不限于: ✓ 稿件列表页数据计算 ✓ 稿件列表页过万播放量展开 ✓ 稿件列表页显示粉丝点击率 ✓ 关闭稿件列表页翻页滚动效果 ✓ 稿件数据页数据计算 ✓ 播放页数据计算 更多功能正在不断添加中
Extension Basic Information
Name | 视频创作者助手 |
ID | lgnplnlpfmpbffkagibljadjbgkgmcok |
Official 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 |
Description | 为哔哩哔哩、抖音等平台视频创作者提供数据分析、创作辅助 |
File Size | 445 KB |
Installation Count | 83 |
Current Version | 1.1 |
Last Updated | 2023-08-26 |
Publish Date | 2022-05-13 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://www.zhouii.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.zhouii.com/video-creator-helper |
Help Page URL | https://www.zhouii.com/video-creator-helper |
Privacy Policy Page URL | https://www.zhouii.com/agreement.php |
Supported Languages | 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:\/\/*\/*" ] } ] } |