My Position in Queue
An extension that shows your position in queue
Что такое My Position in Queue?
My Position in Queue - это расширение Chrome, разработанное Developer Tools, и его основная функция - "An extension that shows your position in queue".
Снимки экрана расширения
Скачать файл CRX расширения My Position in Queue
Скачайте файлы расширений My Position in Queue в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        An extension that shows your 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"
    ]
}  |  |