Quick Character Count
Count characters in selected text
Wat is Quick Character Count?
Quick Character Count is een Chrome-extensie ontwikkeld door prestonfrom, en de belangrijkste functie is "Count characters in selected text".
Extensie Screenshots
Download het CRX-bestand van de extensie Quick Character Count
Download Quick Character Count-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Quick Character Count |
ID | cobjdgciclhjhpheafbpooknokhnkoof |
Officiële URL | https://chromewebstore.google.com/detail/quick-character-count/cobjdgciclhjhpheafbpooknokhnkoof |
Beschrijving | Count characters in selected text |
Bestandsgrootte | 8.13 KB |
Aantal Installaties | 41 |
Huidige Versie | 1.5.1 |
Laatst Bijgewerkt | 2016-02-25 |
Publicatiedatum | 2016-02-25 |
Beoordeling | 2.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | prestonfrom |
Betalingswijze | free |
Extensiewebsite | https://github.com/prestonfrom/ |
Help Pagina-URL | https://github.com/prestonfrom/ |
Ondersteunde Talen | 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" ] } } |