Search Console Percentage Calculator

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

Co to jest Search Console Percentage Calculator?

Search Console Percentage Calculator to rozszerzenie Chrome opracowane przez https://www.analistaseo.es, a jego główną funkcją jest „Adds the percentage difference in Search Console metrics compared to the previous period.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Search Console Percentage Calculator

Pobierz pliki rozszerzeń Search Console Percentage Calculator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Search Console Percentage Calculator Search Console Percentage Calculator
ID licaefgklohoebcfefffhinemkidgejm
Oficjalny URL https://chromewebstore.google.com/detail/search-console-percentage/licaefgklohoebcfefffhinemkidgejm
Opis Adds the percentage difference in Search Console metrics compared to the previous period.
Rozmiar pliku 9.25 KB
Liczba instalacji 34
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2023-08-09
Data Publikacji 2023-08-09
Deweloper https://www.analistaseo.es
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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]"
    }
}