Add this page to Trello

Add this page to Trello as new task

什么是Add this page to Trello?

Add this page to Trello是由https://www.muratayusuke.com开发的Chrome扩展程序,该扩展的主要功能是“Add this page to Trello as new task”。

扩展截图

screenshot

下载Add this page to Trello扩展crx文件

下载Add this page to Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Simple extension for Trello user to add current page to Trello as new task.                    

扩展基本信息

名称 Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
官方URL https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
简介 Add this page to Trello as new task
文件大小 53.6 KB
安装次数 552
当前版本 0.105
更新时间 2015-06-06
上架时间 2015-06-05
评分 3.33/5 共3次评分
开发者 https://www.muratayusuke.com
付费类型 free
支持的语言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "0.105",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-2.1.3.min.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "Add this page to Trello",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*\/",
        "https:\/\/*\/*\/"
    ]
}