Quick Character Count
Count characters in selected text
Cos'è Quick Character Count?
Quick Character Count è un'estensione di Chrome sviluppata da prestonfrom, e la sua funzione principale è "Count characters in selected text".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Quick Character Count
Scarica i file di estensione Quick Character Count 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
This is an ultra simple extension to find the character count of selected text. Good for bloggers/editors who are trying to keep titles, etc. under a certain length. Just highlight text and select "Character count" from the context (left-click) menu.
Informazioni di Base sull'Estensione
Nome | Quick Character Count |
ID | cobjdgciclhjhpheafbpooknokhnkoof |
URL Ufficiale | https://chromewebstore.google.com/detail/quick-character-count/cobjdgciclhjhpheafbpooknokhnkoof |
Descrizione | Count characters in selected text |
Dimensione del File | 8.13 KB |
Conteggio Installazioni | 41 |
Versione Corrente | 1.5.1 |
Ultimo Aggiornamento | 2016-02-25 |
Data di Pubblicazione | 2016-02-25 |
Valutazione | 2.00/5 Totale 2 Valutazioni |
Sviluppatore | prestonfrom |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/prestonfrom/ |
URL della Pagina di Aiuto | https://github.com/prestonfrom/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Character Count", "description": "Count characters in selected text", "version": "1.5.1", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon-bitty.png", "48": "icon.png", "128": "iconbig.png" }, "permissions": [ "contextMenus", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "script.js" ] } ], "background": { "scripts": [ "background.js" ] } } |