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"
}
} | |