Class Countdown Extension
The chrome extension for Class Countdown
什么是Class Countdown Extension?
Class Countdown Extension是由girraweencountdown开发的Chrome扩展程序,该扩展的主要功能是“The chrome extension for Class Countdown”。
扩展截图
下载Class Countdown Extension扩展crx文件
下载Class Countdown Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Class Countdown chrome extension allows you to see how long you have left until the end of each lesson without even having Class Countdown open! 扩展基本信息
| 名称 | |
| ID | lompgalcaddbggjgbmicgimelihccdpe |
| 官方URL | https://chromewebstore.google.com/detail/class-countdown-extension/lompgalcaddbggjgbmicgimelihccdpe |
| 简介 | The chrome extension for Class Countdown |
| 文件大小 | 204 KB |
| 安装次数 | 552 |
| 当前版本 | 0.1.11 |
| 更新时间 | 2022-04-07 |
| 上架时间 | 2021-07-26 |
| 评分 | 4.75/5 共4次评分 |
| 开发者 | girraweencountdown |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.classcountdown.com/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Class Countdown Extension",
"description": "The chrome extension for Class Countdown",
"version": "0.1.11",
"background": {
"scripts": [
"dist\/background.js"
]
},
"permissions": [
"https:\/\/*.classcountdown.com\/api\/*",
"storage",
"notifications",
"unlimitedStorage"
],
"browser_action": {
"default_title": "Class Countdown",
"default_popup": "view\/index.html",
"default_icon": {
"16": "img\/favicon16.png",
"32": "img\/favicon32.png",
"48": "img\/favicon48.png",
"128": "img\/favicon128.png",
"512": "img\/favicon512.png"
}
},
"icons": {
"16": "img\/favicon16.png",
"32": "img\/favicon32.png",
"48": "img\/favicon48.png",
"128": "img\/favicon128.png",
"512": "img\/favicon512.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.classcountdown.com\/"
],
"js": [
"dist\/content.js"
]
}
]
} | |