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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}