280 Twitter Counter

Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.

Qu'est-ce que 280 Twitter Counter ?

280 Twitter Counter est une extension Chrome développée par Alexander Ein, et sa fonction principale est "Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension 280 Twitter Counter

Téléchargez les fichiers d'extension 280 Twitter Counter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension adds the character counter into your tweet form, warns you about the 140 character limit and provides the opportunity to show or hide the circle.  

280 Twitter Counter works well with the latest version of Twitter.

--
✔️ Tweetdeck  ✔️ Web version                    

Informations de Base sur l'Extension

Nom 280 Twitter Counter 280 Twitter Counter
ID ieemcojejhalpakennbgfjeinfakibck
URL Officiel https://chromewebstore.google.com/detail/280-twitter-counter/ieemcojejhalpakennbgfjeinfakibck
Description Adds the 280 character counter into your tweet form and provides the opportunity to show or hide the circle.
Taille du Fichier 34.85 KB
Nombre d'Installations 43
Version Actuelle 3.0.1
Dernière Mise à Jour 2019-10-04
Date de Publication 2019-10-04
Développeur Alexander Ein
Type de Paiement free
Site Web de l'Extension https://github.com/anein/twitter-count-characters
URL de la Page d'Aide https://github.com/anein/twitter-count-characters/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_short_name__",
    "version": "3.0.1",
    "description": "__MSG_ext_description__",
    "homepage_url": "https:\/\/github.com\/anein\/twitter-count-characters",
    "author": "__MSG_ext_author__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "img\/favicon-16x16.png",
        "48": "img\/favicon-48x48.png",
        "128": "img\/favicon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/tweetdeck.twitter.com\/*"
            ],
            "js": [
                "js\/tweetdeck.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/web.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "js\/scripts\/web.js"
    ],
    "browser_action": {
        "default_title": "__MSG_ext_name__",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}