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.”。
擴展截圖
下載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 |
ID | licaefgklohoebcfefffhinemkidgejm |
官方網址 | 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]" } } |