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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |