Add this page to Trello

Add this page to Trello as new task

¿Qué es Add this page to Trello?

Add this page to Trello es una extensión de Chrome desarrollada por https://www.muratayusuke.com, y su función principal es "Add this page to Trello as new task".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Add this page to Trello

Descarga archivos de extensión Add this page to Trello en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
URL Oficial https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
Descripción Add this page to Trello as new task
Tamaño del Archivo 53.6 KB
Cantidad de Instalaciones 552
Versión Actual 0.105
Última Actualización 2015-06-06
Fecha de Publicación 2015-06-05
Calificación 3.33/5 Total de 3 Calificaciones
Desarrollador https://www.muratayusuke.com
Tipo de Pago free
Idiomas Soportados 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:\/\/*\/*\/"
    ]
}