Todoist Mod
A Plugin to add some functionality to todoist.com web application
什么是Todoist Mod?
Todoist Mod是由http://b2hq.com开发的Chrome扩展程序,该扩展的主要功能是“A Plugin to add some functionality to todoist.com web application”。
扩展截图
下载Todoist Mod扩展crx文件
下载Todoist Mod扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Todoist Mod is an *UNOFFICIAL* extension which should add some functionality to todoist.com site, some stuff I personally miss ... for now it adds the ability to define a default priority for tasks and some css tweaks. I plan to add more options as I stumble upon missing features ... 扩展基本信息
| 名称 | |
| ID | angcidioihngmbmhjnijbeghgnkagomd |
| 官方URL | https://chrome.google.com/webstore/detail/todoist-mod/angcidioihngmbmhjnijbeghgnkagomd |
| 简介 | A Plugin to add some functionality to todoist.com web application |
| 文件大小 | 63.07 KB |
| 安装次数 | 174 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2014-10-20 |
| 上架时间 | 2014-10-20 |
| 评分 | 3.50/5 共2次评分 |
| 开发者 | http://b2hq.com |
| 付费类型 | free |
| 扩展官网 | http://b2hq.com/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Todoist Mod",
"description": "A Plugin to add some functionality to todoist.com web application",
"version": "0.1.1",
"permissions": [
"https:\/\/todoist.com\/",
"http:\/\/todoist.com\/"
],
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*:\/\/todoist.com\/*"
],
"js": [
"jquery-2.1.1.min.js",
"main.js"
],
"css": [
"main.css"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |