Add this page to Trello

Add this page to Trello as new task

Was ist Add this page to Trello?

Add this page to Trello ist eine Chrome-Erweiterung, die von https://www.muratayusuke.com entwickelt wurde, und ihr Hauptmerkmal ist "Add this page to Trello as new task".

Erweiterungsscreenshots

screenshot

Add this page to Trello-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add this page to Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Add this page to Trello Add this page to Trello
ID fjfljghieliggacelkamhfiiejncmjmi
Offizielle URL https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi
Beschreibung Add this page to Trello as new task
Dateigröße 53.6 KB
Installationsanzahl 552
Aktuelle Version 0.105
Letztes Update 2015-06-06
Veröffentlichungsdatum 2015-06-05
Bewertung 3.33/5 Insgesamt 3 Bewertungen
Entwickler https://www.muratayusuke.com
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*\/"
    ]
}