Add this page to Trello

Add this page to Trello as new task

What is Add this page to Trello?

Add this page to Trello is a Chrome extension developed by https://www.muratayusuke.com, and its main feature is "Add this page to Trello as new task".

Extension Screenshots

screenshot

Download Add this page to Trello Extension CRX File

Download Add this page to Trello extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
Official URL https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
Description Add this page to Trello as new task
File Size 53.6 KB
Installation Count 552
Current Version 0.105
Last Updated 2015-06-06
Publish Date 2015-06-05
Rating 3.33/5 Total 3 Ratings
Developer https://www.muratayusuke.com
Payment Type free
Supported Languages 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:\/\/*\/*\/"
    ]
}