TrelloCopyTop

Auto moving cards to the list's top

Wat is TrelloCopyTop?

TrelloCopyTop is een Chrome-extensie ontwikkeld door crdev, en de belangrijkste functie is "Auto moving cards to the list's top".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TrelloCopyTop

Download TrelloCopyTop-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Автоматическое перемещение задач вверх списка при их создании, копировании или перемещении. По умолчанию же в трелло все такие задачи попадают вниз списка.
С помощью опций можно определить, в каких случаях задачу перемещать сразу вверх: при создании, копировании или перемещении.                    

Basisinformatie over de Extensie

Naam TrelloCopyTop TrelloCopyTop
ID hondboklpfppgphdloaimlmcplpnbdnj
Officiële URL https://chromewebstore.google.com/detail/trellocopytop/hondboklpfppgphdloaimlmcplpnbdnj
Beschrijving Auto moving cards to the list's top
Bestandsgrootte 151 KB
Aantal Installaties 10
Huidige Versie 0.0.6
Laatst Bijgewerkt 2017-07-18
Publicatiedatum 2017-07-18
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar crdev
Betalingswijze free
Ondersteunde Talen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "0.0.6",
    "manifest_version": 2,
    "default_locale": "ru",
    "icons": {
        "19": "icons\/19.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "page_action": {
        "default_icon": "icons\/19.png",
        "default_title": "__MSG_extName__",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/trello.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        }
    ]
}