Redbubble Tag Counter

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

Was ist Redbubble Tag Counter?

Redbubble Tag Counter ist eine Chrome-Erweiterung, die von redbubbletagcounter entwickelt wurde, und ihr Hauptmerkmal ist "Counts and displays the number of tags on Redbubble upload page.".

Erweiterungsscreenshots

screenshot

Redbubble Tag Counter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Redbubble Tag Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Redbubble Tag Counter Redbubble Tag Counter
ID ncccnkalnkmkmpjaobeondekghkjpafk
Offizielle URL https://chromewebstore.google.com/detail/redbubble-tag-counter/ncccnkalnkmkmpjaobeondekghkjpafk
Beschreibung Counts and displays the number of tags on Redbubble upload page.
Dateigröße 6.73 KB
Installationsanzahl 24
Aktuelle Version 1.0
Letztes Update 2023-03-31
Veröffentlichungsdatum 2023-03-31
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler redbubbletagcounter
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://discord.gg/ugygmPke
Unterstützte Sprachen 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"
    }
}