Tieba Extension
Remove Live Video from Tieba
什么是Tieba Extension?
Tieba Extension是由Hirasawa_Ui开发的Chrome扩展程序,该扩展的主要功能是“Remove Live Video from Tieba”。
扩展截图
下载Tieba Extension扩展crx文件
下载Tieba Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
百度贴吧最近推出许多烦人的新功能,本插件作用能够主动屏蔽这些功能,还原一个干净的贴吧页面。本应用会不断跟踪贴吧广告的变化并不断更新。 扩展基本信息
| 名称 | |
| ID | mmakgkahbgcngjfkhjdcmiefmgbgadap |
| 官方URL | https://chromewebstore.google.com/detail/tieba-extension/mmakgkahbgcngjfkhjdcmiefmgbgadap |
| 简介 | Remove Live Video from Tieba |
| 文件大小 | 67.1 KB |
| 安装次数 | 17 |
| 当前版本 | 0.2.2 |
| 更新时间 | 2014-11-09 |
| 上架时间 | 2014-11-09 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Hirasawa_Ui |
| 付费类型 | free |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tieba Extension",
"version": "0.2.2",
"description": "Remove Live Video from Tieba",
"manifest_version": 2,
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"http:\/\/tieba.baidu.com\/*",
"http:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"page_action": {
"default_icon": "icon16.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/tieba.baidu.com\/*"
],
"js": [
"myscripts.js"
],
"run_at": "document_start"
}
]
} | |