similarWeb website rank badge
showing the current webpage's website rank on the extension icon
Cos'è similarWeb website rank badge?
similarWeb website rank badge è un'estensione di Chrome sviluppata da twbbbb, e la sua funzione principale è "showing the current webpage's website rank on the extension icon".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione similarWeb website rank badge
Scarica i file di estensione similarWeb website rank badge in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | similarWeb website rank badge |
ID | pdekkkflpnnpmgfmjkmlnabfoeinbfgk |
URL Ufficiale | https://chromewebstore.google.com/detail/similarweb-website-rank-b/pdekkkflpnnpmgfmjkmlnabfoeinbfgk |
Descrizione | showing the current webpage's website rank on the extension icon |
Dimensione del File | 8.58 KB |
Conteggio Installazioni | 73 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2022-06-27 |
Data di Pubblicazione | 2021-09-23 |
Sviluppatore | twbbbb |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/twbbbb/website-rank-badge-extension |
Lingue Supportate | 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" ] } ] } |