Asana decorator

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

什麼是Asana decorator?

Asana decorator是由Nikita Slobozhaninov開發的Chrome擴展程式,該擴展的主要功能是“The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com”。

擴展截圖

screenshot
screenshot
screenshot

下載Asana decorator擴展crx文件

下載Asana decorator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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"                    

擴展基本資訊

名稱 Asana decorator Asana decorator
ID nnoeneakknmdclilkfjpkhgaadeabpic
官方網址 https://chrome.google.com/webstore/detail/asana-decorator/nnoeneakknmdclilkfjpkhgaadeabpic
簡介 The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com
檔案大小 62.26 KB
安裝次數 41
目前版本 2.3.0
更新時間 2020-10-18
上架時間 2019-10-01
評分 4.33/5 共 3 次評分
開發者 Nikita Slobozhaninov
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}