semRush website rank badge

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

Co to jest semRush website rank badge?

semRush 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

screenshot

Pobierz plik CRX rozszerzenia semRush website rank badge

Pobierz pliki rozszerzeń semRush 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://seoquake.publicapi.semrush.com/info.php?url=tiktok.com

showing the hyperlink's rank on the bottom left when the mouse hovering on the hyperlink                    

Podstawowe informacje o rozszerzeniu

Nazwa semRush website rank badge semRush website rank badge
ID hmjkeajnlfhbjabboakcgimcnejnnbjj
Oficjalny URL https://chromewebstore.google.com/detail/semrush-website-rank-badg/hmjkeajnlfhbjabboakcgimcnejnnbjj
Opis showing the current webpage's website rank on the extension icon
Rozmiar pliku 7.35 KB
Liczba instalacji 1,079
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2022-06-21
Data Publikacji 2021-09-14
Deweloper twbbbb
E-mail [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": "semRush website rank badge",
    "description": "showing the current webpage's website rank on the extension icon",
    "permissions": [
        "activeTab",
        "webNavigation",
        "https:\/\/seoquake.publicapi.semrush.com\/*"
    ],
    "version": "1.1.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}