Quick Character Count
Count characters in selected text
Vad är Quick Character Count?
Quick Character Count är en Chrome-tillägg utvecklad av prestonfrom, och dess huvudfunktion är "Count characters in selected text".
Tilläggsskärmbilder
Ladda ner Quick Character Count-förlängningens CRX-fil
Ladda ner Quick Character Count-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 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. Grundläggande Information om Tillägg
| Namn | |
| ID | cobjdgciclhjhpheafbpooknokhnkoof |
| Officiell webbadress | https://chromewebstore.google.com/detail/quick-character-count/cobjdgciclhjhpheafbpooknokhnkoof |
| Beskrivning | Count characters in selected text |
| Filstorlek | 8.13 KB |
| Antal Installationer | 41 |
| Aktuell Version | 1.5.1 |
| Senast Uppdaterad | 2016-02-25 |
| Publiceringsdatum | 2016-02-25 |
| Betyg | 2.00/5 Totalt 2 Betyg |
| Utvecklare | prestonfrom |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/prestonfrom/ |
| Hjälpsida URL | https://github.com/prestonfrom/ |
| Stödda Språk | 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"
]
}
} | |