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 |
| 官方網址 | 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"
}
} | |