similarWeb website rank badge
showing the current webpage's website rank on the extension icon
Co to jest similarWeb website rank badge?
similarWeb website rank badge to rozszerzenie Chrome opracowane przez twbbbb, a jego główną funkcją jest „showing the current webpage's website rank on the extension icon”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia similarWeb website rank badge
Pobierz pliki rozszerzeń similarWeb website rank badge w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
fetch data from https://rank.similarweb.com/api/v1/global showing the hyperlink's rank on the bottom left when the mouse hovering on the hyperlink
Podstawowe informacje o rozszerzeniu
Nazwa | similarWeb website rank badge |
ID | pdekkkflpnnpmgfmjkmlnabfoeinbfgk |
Oficjalny URL | https://chromewebstore.google.com/detail/similarweb-website-rank-b/pdekkkflpnnpmgfmjkmlnabfoeinbfgk |
Opis | showing the current webpage's website rank on the extension icon |
Rozmiar pliku | 8.58 KB |
Liczba instalacji | 73 |
Aktualna Wersja | 1.1.1 |
Ostatnia Aktualizacja | 2022-06-27 |
Data Publikacji | 2021-09-23 |
Deweloper | twbbbb |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/twbbbb/website-rank-badge-extension |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "browser_action": [], "manifest_version": 2, "icons": { "128": "128x128.png" }, "name": "similarWeb website rank badge", "description": "showing the current webpage's website rank on the extension icon", "permissions": [ "activeTab", "webNavigation", "https:\/\/rank.similarweb.com\/api\/v1\/global" ], "version": "1.1.1", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ] } |