My Position in Queue

An extension that shows your position in queue

My Position in Queue là gì?

My Position in Queue là một tiện ích mở rộng Chrome được phát triển bởi Developer Tools, và tính năng chính của nó là "An extension that shows your position in queue".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng My Position in Queue

Tải xuống các tệp mở rộng My Position in Queue dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        An extension that shows your position in queue                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên My Position in Queue My Position in Queue
ID jdadckafhliibhblifnnkkbofidpfjcd
URL Chính Thức https://chromewebstore.google.com/detail/my-position-in-queue/jdadckafhliibhblifnnkkbofidpfjcd
Mô tả An extension that shows your position in queue
Kích Thước Tệp 36.69 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-10-22
Ngày Phát Hành 2020-10-05
Nhà Phát Triển Developer Tools
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://lightningboltapp.com/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}