Asana Load More
This extension will load all subtasks in Asana. It also lets you hide certain sections.
什麼是Asana Load More?
Asana Load More是由Fat Cattitude, LLC開發的Chrome擴展程式,該擴展的主要功能是“This extension will load all subtasks in Asana. It also lets you hide certain sections.”。
擴展截圖
下載Asana Load More擴展crx文件
下載Asana Load More擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension will automatically load all subtasks in Asana. It will also allow you to toggle certain subtask sections.
擴展基本資訊
名稱 | |
ID | gmgelaegjlfeldnmlilkeaegejmlgjhf |
官方網址 | https://chrome.google.com/webstore/detail/asana-load-more/gmgelaegjlfeldnmlilkeaegejmlgjhf |
簡介 | This extension will load all subtasks in Asana. It also lets you hide certain sections. |
檔案大小 | 110 KB |
安裝次數 | 703 |
目前版本 | 0.0.0.4 |
更新時間 | 2019-11-13 |
上架時間 | 2019-11-09 |
評分 | 4.20/5 共 10 次評分 |
開發者 | Fat Cattitude, LLC |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana Load More", "description": "This extension will load all subtasks in Asana. It also lets you hide certain sections.", "version": "0.0.0.4", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Asana Load More" }, "permissions": [ "activeTab", "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.asana.com\/*" ], "js": [ "content.js" ] } ] } |