Google rank checker
With Google rank checker you don't need to go up and down to locate your site in google search results.
什么是Google rank checker?
Google rank checker是由Vahid Naderi开发的Chrome扩展程序,该扩展的主要功能是“With Google rank checker you don't need to go up and down to locate your site in google search results.”。
扩展截图
下载Google rank checker扩展crx文件
下载Google rank checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension that shows your sites rank for your searches in google. After adding this extension to the Chrome browser, add your favorite website to the list and then search for the keyword you want in Google. When the page is fully loaded, the number of your websites which are in the top 100 will be shown on the extension logo and by opening the list of this extension, you can see the rank of each website. Note: The rank shown on the extension's pop-up may be different from what you see in the results that's because it uses a cookie free request to fetch the top 100 google results which is more like searching a keyword in incognito mode and it should be closer to what your audience may see.
扩展基本信息
名称 | Google rank checker |
ID | ehgbmeaekkaeajmapeefcolejlaamdip |
官方URL | https://chromewebstore.google.com/detail/google-rank-checker/ehgbmeaekkaeajmapeefcolejlaamdip |
简介 | With Google rank checker you don't need to go up and down to locate your site in google search results. |
文件大小 | 64.95 KB |
安装次数 | 12,175 |
当前版本 | 0.6.0 |
更新时间 | 2022-02-05 |
上架时间 | 2020-01-08 |
评分 | 3.77/5 共13次评分 |
开发者 | Vahid Naderi |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/VahidNaderi/googlerankchecker |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google rank checker", "version": "0.6.0", "description": "With Google rank checker you don't need to go up and down to locate your site in google search results.", "permissions": [ "tabs", "activeTab", "storage" ], "host_permissions": [ "https:\/\/www.google.com\/" ], "background": { "service_worker": "bg-loader.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.google.com\/*" ], "js": [ "storage.js", "content.js" ], "css": [ "styles.css" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/pagerank16.png", "32": "images\/pagerank32.png", "48": "images\/pagerank48.png", "128": "images\/pagerank128.png" } }, "icons": { "16": "images\/pagerank16.png", "32": "images\/pagerank32.png", "48": "images\/pagerank48.png", "128": "images\/pagerank128.png" }, "options_page": "settings.html" } |