Skribbl.io Letter Counter

Made by Magaz. This extension shows the number of the letter or letters to guess in the skribbl.io game. Made for lazy people.

Vad är Skribbl.io Letter Counter?

Skribbl.io Letter Counter är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Made by Magaz. This extension shows the number of the letter or letters to guess in the skribbl.io game. Made for lazy people.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Skribbl.io Letter Counter-förlängningens CRX-fil

Ladda ner Skribbl.io Letter Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension allows users to see the number of letters in a game of skribbl.io so that they can make more accurate guesses faster. For people that are lazy to count them themselves.                    

Grundläggande Information om Tillägg

Namn Skribbl.io Letter Counter Skribbl.io Letter Counter
ID bdjejcobeddkhcpcemlbnoncfabmafce
Officiell webbadress https://chromewebstore.google.com/detail/skribblio-letter-counter/bdjejcobeddkhcpcemlbnoncfabmafce
Beskrivning Made by Magaz. This extension shows the number of the letter or letters to guess in the skribbl.io game. Made for lazy people.
Filstorlek 16.71 KB
Antal Installationer 3,401
Aktuell Version 1.1
Senast Uppdaterad 2020-05-03
Publiceringsdatum 2020-05-03
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Skribbl.io Letter Counter",
    "description": "Made by Magaz. This extension shows the number of the letter or letters to guess in the skribbl.io game. Made for lazy people. ",
    "version": "1.1",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/skribbl.io\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}