Add this page to Trello

Add this page to Trello as new task

Add this page to Trello là gì?

Add this page to Trello là một tiện ích mở rộng Chrome được phát triển bởi https://www.muratayusuke.com, và tính năng chính của nó là "Add this page to Trello as new task".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Add this page to Trello

Tải xuống các tệp mở rộng Add this page to Trello dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
URL Chính Thức https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
Mô tả Add this page to Trello as new task
Kích Thước Tệp 53.6 KB
Số Lần Cài Đặt 552
Phiên Bản Hiện Tại 0.105
Cập Nhật Lần Cuối 2015-06-06
Ngày Phát Hành 2015-06-05
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://www.muratayusuke.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*\/"
    ]
}