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是由https://www.analistaseo.es开发的Chrome扩展程序,该扩展的主要功能是“Adds the percentage difference in Search Console metrics compared to the previous period.”。

扩展截图

screenshot
screenshot

下载Search Console Percentage Calculator扩展crx文件

下载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]"
    }
}