Redbubble Tag Counter

Counts and displays the number of tags on Redbubble upload page.

Co to jest Redbubble Tag Counter?

Redbubble Tag Counter to rozszerzenie Chrome opracowane przez redbubbletagcounter, a jego główną funkcją jest „Counts and displays the number of tags on Redbubble upload page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Redbubble Tag Counter

Pobierz pliki rozszerzeń Redbubble Tag Counter 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

                        Counts and displays the number of tags on Redbubble upload page, the counter increases once an additional sentance has been added and seperated with a comma.
Text turns red if you exceed 50 tags                    

Podstawowe informacje o rozszerzeniu

Nazwa Redbubble Tag Counter Redbubble Tag Counter
ID ncccnkalnkmkmpjaobeondekghkjpafk
Oficjalny URL https://chromewebstore.google.com/detail/redbubble-tag-counter/ncccnkalnkmkmpjaobeondekghkjpafk
Opis Counts and displays the number of tags on Redbubble upload page.
Rozmiar pliku 6.73 KB
Liczba instalacji 24
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-03-31
Data Publikacji 2023-03-31
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper redbubbletagcounter
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://discord.gg/ugygmPke
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Redbubble Tag Counter",
    "version": "1.0",
    "description": "Counts and displays the number of tags on Redbubble upload page.",
    "action": {
        "default_icon": {
            "48": "icon.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.redbubble.com\/portfolio\/images\/new*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    }
}