ImageGoldmine

Unleash the power of LighShot

Что такое ImageGoldmine?

ImageGoldmine - это расширение Chrome, разработанное coldmeekly, и его основная функция - "Unleash the power of LighShot".

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

screenshot

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

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

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

                        More in-depth description will be added soonFast and Powerful way to lightshot image previewer.
To use, simply load a prnt.sc image and use the left or right arrow keys.

Latest update:
* Added checks to skip honeypots
* Added prefetching, prerendering and preconnecting to increase performance                    

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

Название ImageGoldmine ImageGoldmine
ID njpnphcflfjcapedggloefcemgcljgnf
Официальный URL https://chromewebstore.google.com/detail/imagegoldmine/njpnphcflfjcapedggloefcemgcljgnf
Описание Unleash the power of LighShot
Размер файла 11.31 KB
Количество установок 182
Текущая Версия 1.4
Последнее Обновление 2023-07-09
Дата публикации 2019-07-30
Рейтинг 3.50/5 Всего 2 оценок
Разработчик coldmeekly
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ImageGoldmine",
    "version": "1.4",
    "description": "Unleash the power of LighShot",
    "permissions": [
        "http:\/\/prnt.sc\/*",
        "https:\/\/prnt.sc\/*"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/prnt.sc\/*",
                "https:\/\/prnt.sc\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}