Asana Recently Completed Tasks
This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.
Asana Recently Completed Tasksとは何ですか?
Asana Recently Completed TasksはVaughanによって開発されたChromeの拡張機能で、その主な機能は「This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.」です。
拡張機能のスクリーンショット
Asana Recently Completed Tasks拡張機能のCRXファイルをダウンロード
Asana Recently Completed Tasks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
| 名前 | |
| ID | eijmdadhpeciojloijjodpolgnlepecj |
| 公式URL | https://chromewebstore.google.com/detail/asana-recently-completed/eijmdadhpeciojloijjodpolgnlepecj |
| 説明 | This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017. |
| ファイルサイズ | 549 KB |
| インストール数 | 86 |
| 現在のバージョン | 0.1.1 |
| 最終更新日 | 2019-03-05 |
| 公開日 | 2019-03-05 |
| 評価 | 5.00/5 合計 8 レビュー |
| 開発者 | Vaughan |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension |
| ヘルプページのURL | https://github.com/vjpr/asana-recently-completed-tasks-chrome-extension/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Asana Recently Completed Tasks",
"description": "This extension brings back the ability to show recently completed tasks in a project which was removed from the Asana UI in 2017.",
"version": "0.1.1",
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/app.asana.com\/*"
],
"css": [
"style.global.css",
"style.css"
],
"js": [
"content-script-injector.js"
],
"all_frames": false
}
],
"web_accessible_resources": [
"content-script.js"
]
} | |