QuickPost

Play-By-Forum Assistant for BoardGameGeek.com, RPGGeek.com, and VideoGameGeek.com

Что такое QuickPost?

QuickPost - это расширение Chrome, разработанное DecisionCoding, и его основная функция - "Play-By-Forum Assistant for BoardGameGeek.com, RPGGeek.com, and VideoGameGeek.com".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения QuickPost

Скачайте файлы расширений QuickPost в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        QuickPost provides enhanced forum post editing and handling options for users playing Play-By-Forum games on BoardGameGeek, RPGGeek, and/or VideoGameGeek sites.
Provided free and without any warranty.                    

Основная информация о расширении

Название QuickPost QuickPost
ID mipjjoefhmankgdoekloipgfinpgenmo
Официальный URL https://chromewebstore.google.com/detail/quickpost/mipjjoefhmankgdoekloipgfinpgenmo
Описание Play-By-Forum Assistant for BoardGameGeek.com, RPGGeek.com, and VideoGameGeek.com
Размер файла 30.84 KB
Количество установок 111
Текущая Версия 2.1.0
Последнее Обновление 2021-04-20
Дата публикации 2020-04-26
Рейтинг 4.67/5 Всего 3 оценок
Разработчик DecisionCoding
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QuickPost",
    "version": "2.1.0",
    "description": "Play-By-Forum Assistant for BoardGameGeek.com, RPGGeek.com, and VideoGameGeek.com",
    "icons": {
        "16": "QP16.png",
        "32": "QP32.png",
        "48": "QP48.png",
        "128": "QP128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "PbF_QP_Background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.boardgamegeek.com\/*",
                "https:\/\/*.rpggeek.com\/*",
                "https:\/\/*.videogamegeek.com\/*"
            ],
            "js": [
                "PbF_QP_Content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "PbF_QP_Options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "PbF_QP_Options.html"
    },
    "manifest_version": 2
}