CR GB Delete
An extension to delete every GB post
什么是CR GB Delete?
CR GB Delete是由Beardfist开发的Chrome扩展程序,该扩展的主要功能是“An extension to delete every GB post”。
扩展截图
下载CR GB Delete扩展crx文件
下载CR GB Delete扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A quick extension to delete GB posts. 扩展基本信息
| 名称 | |
| ID | kpdenplmognkddfdfmnaggamjmhaahbc |
| 官方URL | https://chromewebstore.google.com/detail/cr-gb-delete/kpdenplmognkddfdfmnaggamjmhaahbc |
| 简介 | An extension to delete every GB post |
| 文件大小 | 86.7 KB |
| 安装次数 | 30 |
| 当前版本 | 1.6.8 |
| 更新时间 | 2018-10-24 |
| 上架时间 | 2018-10-24 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Beardfist |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "CR GB Delete",
"version": "1.6.8",
"manifest_version": 2,
"description": "An extension to delete every GB post",
"background": {
"scripts": [
"bgp.js",
"jquery.min.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/www.crunchyroll.com\/user\/*",
"https:\/\/www.crunchyroll.com\/group\/*"
],
"js": [
"jquery.min.js",
"delete.js"
],
"css": [
"gb.css"
]
},
{
"matches": [
"https:\/\/www.crunchyroll.com\/showgb*"
],
"js": [
"jquery.min.js",
"jquery-ui.min.js",
"gbDelete.js"
],
"css": [
"jquery-ui.min.css"
]
}
],
"permissions": [
"https:\/\/www.crunchyroll.com\/"
],
"icons": {
"48": "48.png",
"128": "128.png"
}
} | |