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