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.”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Asana Load More Asana Load More
ID gmgelaegjlfeldnmlilkeaegejmlgjhf
官方URL 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"
            ]
        }
    ]
}