similarWeb website rank badge

showing the current webpage's website rank on the extension icon

O que é similarWeb website rank badge?

similarWeb website rank badge é uma extensão do Chrome desenvolvida por twbbbb, e sua principal característica é "showing the current webpage's website rank on the extension icon".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão similarWeb website rank badge

Baixe arquivos de extensão similarWeb website rank badge no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome similarWeb website rank badge similarWeb website rank badge
ID pdekkkflpnnpmgfmjkmlnabfoeinbfgk
URL Oficial https://chromewebstore.google.com/detail/similarweb-website-rank-b/pdekkkflpnnpmgfmjkmlnabfoeinbfgk
Descrição showing the current webpage's website rank on the extension icon
Tamanho do Arquivo 8.58 KB
Contagem de Instalações 73
Versão Atual 1.1.1
Última Atualização 2022-06-27
Data de Publicação 2021-09-23
Desenvolvedor twbbbb
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/twbbbb/website-rank-badge-extension
Idiomas Suportados 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"
            ]
        }
    ]
}