Asana decorator

The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com

Co je Asana decorator?

Asana decorator je rozšíření Chrome vyvinuté Nikita Slobozhaninov, a jeho hlavní funkcí je „The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Asana decorator

Stáhněte si soubory rozšíření Asana decorator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        1) You can use > characters for blockquoting.

> This is a blockquote

Lorem ipsum dolor sit amet...


2) You can produce a horizontal line by placing three or more hyphens on a line by themselves.

Lorem ipsum dolor sit amet...

---

Excepteur sint occaecat cupidatat non proident....

3) You can quickly answer with blockquotes using button "REPLY"                    

Základní Informace o Rozšíření

Název Asana decorator Asana decorator
ID nnoeneakknmdclilkfjpkhgaadeabpic
Oficiální URL https://chrome.google.com/webstore/detail/asana-decorator/nnoeneakknmdclilkfjpkhgaadeabpic
Popis The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com
Velikost souboru 62.26 KB
Počet instalací 41
Aktuální Verze 2.3.0
Poslední Aktualizace 2020-10-18
Datum Vydání 2019-10-01
Hodnocení 4.33/5 Celkem 3 Hodnocení
Vývojář Nikita Slobozhaninov
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Asana decorator",
    "description": "The extension adds styles for blockquotes, horizontal lines in task\u2019s comments on asana.com",
    "version": "2.3.0",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.asana.com\/*",
                "http:\/\/app.asana.com\/*"
            ],
            "js": [
                "content_scripts\/content_scripts.js"
            ],
            "css": [
                "content_scripts\/content_scripts.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}