Dark2L
Dark Mode & Serenity Sounds for D2L in a Click!
什么是Dark2L?
Dark2L是由Jimmy Blanck开发的Chrome扩展程序,该扩展的主要功能是“Dark Mode & Serenity Sounds for D2L in a Click!”。
扩展截图
下载Dark2L扩展crx文件
下载Dark2L扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Make D2L comfortable to use at night with dark mode! While studying, listen to relaxing sounds to focus and be more productive. 扩展基本信息
| 名称 | |
| ID | gnicfelefcgjpkjpjdmbpppkemanjbeb |
| 官方URL | https://chromewebstore.google.com/detail/dark2l/gnicfelefcgjpkjpjdmbpppkemanjbeb |
| 简介 | Dark Mode & Serenity Sounds for D2L in a Click! |
| 文件大小 | 129 MB |
| 安装次数 | 302 |
| 当前版本 | 2.0.2 |
| 更新时间 | 2023-11-15 |
| 上架时间 | 2021-03-02 |
| 评分 | 4.80/5 共5次评分 |
| 开发者 | Jimmy Blanck |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://jbx.design/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"minimum_chrome_version": "109",
"permissions": [
"storage",
"offscreen"
],
"name": "Dark2L",
"version": "2.0.2",
"description": "Dark Mode & Serenity Sounds for D2L in a Click!",
"icons": {
"128": "icon_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/d2l*"
],
"js": [
"content.js"
],
"css": [
"style.css"
]
}
],
"background": {
"service_worker": "service-worker.js"
},
"web_accessible_resources": [
{
"resources": [
"*.png",
"\/audio\/*.mp3",
"images\/*.png",
"images\/*.gif",
"images\/*.webp"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |