Add this page to Trello

Add this page to Trello as new task

Qu'est-ce que Add this page to Trello ?

Add this page to Trello est une extension Chrome développée par https://www.muratayusuke.com, et sa fonction principale est "Add this page to Trello as new task".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Add this page to Trello

Téléchargez les fichiers d'extension Add this page to Trello au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
URL Officiel https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
Description Add this page to Trello as new task
Taille du Fichier 53.6 KB
Nombre d'Installations 552
Version Actuelle 0.105
Dernière Mise à Jour 2015-06-06
Date de Publication 2015-06-05
Évaluation 3.33/5 Total 3 Évaluations
Développeur https://www.muratayusuke.com
Type de Paiement free
Langues Prises en Charge 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:\/\/*\/*\/"
    ]
}