Morning Routine
This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning
什么是Morning Routine?
Morning Routine是由javierguzmandev开发的Chrome扩展程序,该扩展的主要功能是“This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning”。
扩展截图
下载Morning Routine扩展crx文件
下载Morning Routine扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This add-on lets you to specify in the options a bunch of web pages URLs separated by a line. When you are in your morning routine you can click the add-on icon and it will open your favorites web pages. 扩展基本信息
| 名称 | |
| ID | oomonogdlncffnaapifnabnobndkiojm |
| 官方URL | https://chromewebstore.google.com/detail/morning-routine/oomonogdlncffnaapifnabnobndkiojm |
| 简介 | This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning |
| 文件大小 | 7.22 KB |
| 安装次数 | 39 |
| 当前版本 | 1.0 |
| 更新时间 | 2022-10-21 |
| 上架时间 | 2022-10-20 |
| 开发者 | javierguzmandev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/javierguzman/morning-routine |
| 帮助页面URL | https://github.com/javierguzman/morning-routine |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning",
"manifest_version": 3,
"name": "Morning Routine",
"version": "1.0",
"author": "Javier Guzman",
"homepage_url": "https:\/\/github.com\/javierguzman\/morning-routine",
"icons": {
"48": "icons\/coffee-cup-48.png"
},
"action": {
"default_icon": {
"48": "icons\/coffee-cup-48.png"
},
"default_title": "Morning Routine"
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html"
},
"permissions": [
"storage"
]
} | |