Add this page to Trello

Add this page to Trello as new task

O que é Add this page to Trello?

Add this page to Trello é uma extensão do Chrome desenvolvida por https://www.muratayusuke.com, e sua principal característica é "Add this page to Trello as new task".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Add this page to Trello

Baixe arquivos de extensão Add this page to Trello no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome 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
Descrição Add this page to Trello as new task
Tamanho do Arquivo 53.6 KB
Contagem de Instalações 552
Versão Atual 0.105
Última Atualização 2015-06-06
Data de Publicação 2015-06-05
Classificação 3.33/5 Total de 3 Avaliações
Desenvolvedor https://www.muratayusuke.com
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/*\/"
    ]
}