Hide images in trello

This extension adds button to toggle all cover images in Trello lists.

Vad är Hide images in trello?

Hide images in trello är en Chrome-tillägg utvecklad av streumme, och dess huvudfunktion är "This extension adds button to toggle all cover images in Trello lists.".

Tilläggsskärmbilder

screenshot

Ladda ner Hide images in trello-förlängningens CRX-fil

Ladda ner Hide images in trello-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

                        In order to get a clean view of a cluttered trello board, this plugin toggles all cover images by clicking a button in the toolbar.                    

Grundläggande Information om Tillägg

Namn Hide images in trello Hide images in trello
ID opaoofkloohknnanekncgnpcknohcbpj
Officiell webbadress https://chromewebstore.google.com/detail/hide-images-in-trello/opaoofkloohknnanekncgnpcknohcbpj
Beskrivning This extension adds button to toggle all cover images in Trello lists.
Filstorlek 44.63 KB
Antal Installationer 83
Aktuell Version 1.0
Senast Uppdaterad 2019-04-10
Publiceringsdatum 2019-04-10
Betyg 2.67/5 Totalt 3 Betyg
Utvecklare streumme
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide images in trello",
    "description": "This extension adds button to toggle all cover images in Trello lists.",
    "version": "1.0",
    "author": "Johan Str\u00f6m",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery.js",
        "imagehide.js",
        "imagehide.css"
    ],
    "permissions": [
        "https:\/\/trello.com\/b\/*"
    ]
}