similarWeb website rank badge

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

Co je similarWeb website rank badge?

similarWeb website rank badge je rozšíření Chrome vyvinuté twbbbb, a jeho hlavní funkcí je „showing the current webpage's website rank on the extension icon“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření similarWeb website rank badge

Stáhněte si soubory rozšíření similarWeb website rank badge ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název similarWeb website rank badge similarWeb website rank badge
ID pdekkkflpnnpmgfmjkmlnabfoeinbfgk
Oficiální URL https://chromewebstore.google.com/detail/similarweb-website-rank-b/pdekkkflpnnpmgfmjkmlnabfoeinbfgk
Popis showing the current webpage's website rank on the extension icon
Velikost souboru 8.58 KB
Počet instalací 73
Aktuální Verze 1.1.1
Poslední Aktualizace 2022-06-27
Datum Vydání 2021-09-23
Vývojář twbbbb
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/twbbbb/website-rank-badge-extension
Podporované Jazyky 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"
            ]
        }
    ]
}