Add this page to Trello

Add this page to Trello as new task

Cos'è Add this page to Trello?

Add this page to Trello è un'estensione di Chrome sviluppata da https://www.muratayusuke.com, e la sua funzione principale è "Add this page to Trello as new task".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Add this page to Trello

Scarica i file di estensione Add this page to Trello in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
URL Ufficiale https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
Descrizione Add this page to Trello as new task
Dimensione del File 53.6 KB
Conteggio Installazioni 552
Versione Corrente 0.105
Ultimo Aggiornamento 2015-06-06
Data di Pubblicazione 2015-06-05
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore https://www.muratayusuke.com
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*\/"
    ]
}