My Position in Queue

An extension that shows your position in queue

My Position in Queue란 무엇입니까?

My Position in Queue은(는) Developer Tools에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that shows your position in queue"입니다.

확장 프로그램 스크린샷

screenshot

My Position in Queue 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An extension that shows your position in queue                    

확장 프로그램 기본 정보

이름 My Position in Queue My Position in Queue
ID jdadckafhliibhblifnnkkbofidpfjcd
공식 URL https://chromewebstore.google.com/detail/my-position-in-queue/jdadckafhliibhblifnnkkbofidpfjcd
설명 An extension that shows your position in queue
파일 크기 36.69 KB
설치 횟수 21
현재 버전 1.0
최근 업데이트 2020-10-22
출시 날짜 2020-10-05
개발자 Developer Tools
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://lightningboltapp.com/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Position in Queue",
    "version": "1.0",
    "description": "An extension that shows your position in queue",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/csapptools.docusignhq.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "My Position in Queue"
    },
    "permissions": [
        "tabs",
        "notifications",
        "https:\/\/csapptools.docusignhq.com\/*",
        "storage"
    ]
}