Search Console Percentage Calculator

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

Vad är Search Console Percentage Calculator?

Search Console Percentage Calculator är en Chrome-tillägg utvecklad av https://www.analistaseo.es, och dess huvudfunktion är "Adds the percentage difference in Search Console metrics compared to the previous period.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Search Console Percentage Calculator-förlängningens CRX-fil

Ladda ner Search Console Percentage Calculator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Search Console Percentage Calculator Search Console Percentage Calculator
ID licaefgklohoebcfefffhinemkidgejm
Officiell webbadress https://chromewebstore.google.com/detail/search-console-percentage/licaefgklohoebcfefffhinemkidgejm
Beskrivning Adds the percentage difference in Search Console metrics compared to the previous period.
Filstorlek 9.25 KB
Antal Installationer 34
Aktuell Version 0.0.0.1
Senast Uppdaterad 2023-08-09
Publiceringsdatum 2023-08-09
Utvecklare https://www.analistaseo.es
E-post [email protected]
Betalningssätt free
Stödda Språk 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]"
    }
}