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…

Vad är trello-board?

trello-board är en Chrome-tillägg utvecklad av rotagi37, och dess huvudfunktion är "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".

Ladda ner trello-board-förlängningens CRX-fil

Ladda ner trello-board-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn trello-board trello-board
ID ndeahieadodljlbnmhkiminjacaalakm
Officiell webbadress https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm
Beskrivning enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Filstorlek 65.42 KB
Antal Installationer 42
Aktuell Version 1.0.1.6
Senast Uppdaterad 2017-09-27
Publiceringsdatum 2017-09-27
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare rotagi37
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}