Search Console Percentage Calculator

Adds the percentage difference in Search Console metrics compared to the previous period.

Что такое Search Console Percentage Calculator?

Search Console Percentage Calculator - это расширение Chrome, разработанное https://www.analistaseo.es, и его основная функция - "Adds the percentage difference in Search Console metrics compared to the previous period.".

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

screenshot
screenshot

Скачать файл CRX расширения Search Console Percentage Calculator

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

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

                        Adds the percentage difference in Search Console metrics compared to the previous period.                    

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

Название Search Console Percentage Calculator Search Console Percentage Calculator
ID licaefgklohoebcfefffhinemkidgejm
Официальный URL https://chromewebstore.google.com/detail/search-console-percentage/licaefgklohoebcfefffhinemkidgejm
Описание Adds the percentage difference in Search Console metrics compared to the previous period.
Размер файла 9.25 KB
Количество установок 34
Текущая Версия 0.0.0.1
Последнее Обновление 2023-08-09
Дата публикации 2023-08-09
Разработчик https://www.analistaseo.es
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search Console Percentage Calculator",
    "description": "Adds the percentage difference in Search Console metrics compared to the previous period.",
    "version": "0.0.0.1",
    "action": [],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/search.google.com\/search-console\/performance\/search-analytics*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "author": {
        "email": "[email protected]"
    }
}