Form Text Counter Badge

カーソルを当てたフォームの文字数を表示します

Cos'è Form Text Counter Badge?

Form Text Counter Badge è un'estensione di Chrome sviluppata da https://wryoku.com, e la sua funzione principale è "カーソルを当てたフォームの文字数を表示します".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Form Text Counter Badge

Scarica i file di estensione Form Text Counter Badge in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        カーソルを当てたフォームや、マウスで選択した部分の文字数を表示します
SEO対策などで適切な文字数をカウントしたいときに特に便利です。

titleタグやdescriptionに適切な文字数を入力したいとき、どのサイトでもどの管理画面のフォームからでもカウントし、バッジに表示します。
バッジの文字数はChromeの使用上、先頭から4文字までしか表示できません。
バッジの文字が小さい、もしくは4桁以上の文字数の場合、アイコンをクリックするとポップアップで文字数を拡大表示します。

文字数カウントサイトにわざわざ移動して、コピぺして文字数カウントする必要はもうありません。                    

Informazioni di Base sull'Estensione

Nome Form Text Counter Badge Form Text Counter Badge
ID cekmgllamfeimfigbknikfklahjmjcaa
URL Ufficiale https://chromewebstore.google.com/detail/form-text-counter-badge/cekmgllamfeimfigbknikfklahjmjcaa
Descrizione カーソルを当てたフォームの文字数を表示します
Dimensione del File 39.17 KB
Conteggio Installazioni 2,436
Versione Corrente 0.4
Ultimo Aggiornamento 2016-06-05
Data di Pubblicazione 2016-06-05
Valutazione 3.20/5 Totale 5 Valutazioni
Sviluppatore https://wryoku.com
Tipo di Pagamento free
Sito Web dell'Estensione http://wryoku.com/chrome-form_text_counter_badge/
Lingue Supportate ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form Text Counter Badge",
    "version": "0.4",
    "manifest_version": 2,
    "icons": {
        "128": "128.png"
    },
    "description": "\u30ab\u30fc\u30bd\u30eb\u3092\u5f53\u3066\u305f\u30d5\u30a9\u30fc\u30e0\u306e\u6587\u5b57\u6570\u3092\u8868\u793a\u3057\u307e\u3059",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-1.11.0.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Form Text Counter Badge",
        "default_popup": "popup.html"
    }
}