trello-board

enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…

Qu'est-ce que trello-board ?

trello-board est une extension Chrome développée par rotagi37, et sa fonction principale est "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".

Télécharger le fichier CRX de l'extension trello-board

Téléchargez les fichiers d'extension trello-board 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

                        enables to peek trello board from action icon popup 

just setup you current board and list name in the option screen and get easy access to the list from the extension icon                    

Informations de Base sur l'Extension

Nom trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
URL Officiel https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
Description enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Taille du Fichier 65.42 KB
Nombre d'Installations 42
Version Actuelle 1.0.1.6
Dernière Mise à Jour 2017-09-27
Date de Publication 2017-09-27
Évaluation 5.00/5 Total 1 Évaluations
Développeur rotagi37
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "trello-board",
    "manifest_version": 2,
    "version": "1.0.1.6",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png"
    },
    "permissions": [
        "history",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "https:\/\/trello.com\/*"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "\/bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon.png",
            "32": "icon.png",
            "48": "icon.png"
        },
        "default_title": "Trello Board",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [],
            "js": [
                "jquery-3.2.1.min.js",
                "cscript.js"
            ],
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}