Query URL

Update url and links with custom query on the fly.

Что такое Query URL?

Query URL - это расширение Chrome, разработанное crohrefdev, и его основная функция - "Update url and links with custom query on the fly.".

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

screenshot

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

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

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

                        Query URL extension resolves url custom queries. Simply add query or hash and extension will update url with defined query for you. Every html  tag will be updated with you query so that you do not need to add it manually to every link you follow.                    

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

Название Query URL Query URL
ID djgohjhdlcjbemnlhdpbphkmhjoenfdj
Официальный URL https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj
Описание Update url and links with custom query on the fly.
Размер файла 19.98 KB
Количество установок 35
Текущая Версия 1.0.0.3
Последнее Обновление 2021-05-11
Дата публикации 2020-08-12
Рейтинг 5.00/5 Всего 2 оценок
Разработчик crohrefdev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/AlHota/query-url
URL страницы помощи https://github.com/AlHota/query-url
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Query URL",
    "description": "Update url and links with custom query on the fly.",
    "version": "1.0.0.3",
    "content_security_policy": "default-src 'self'",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": ".\/icons\/icon19.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/icons\/icon16.png",
        "19": ".\/icons\/icon19.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/js\/main.js"
            ]
        }
    ]
}