Daily Typer
Know your real typing speed in everyday typing activities.
Vad är Daily Typer?
Daily Typer är en Chrome-tillägg utvecklad av timjang3, och dess huvudfunktion är "Know your real typing speed in everyday typing activities.".
Tilläggsskärmbilder
Ladda ner Daily Typer-förlängningens CRX-fil
Ladda ner Daily Typer-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
Extension that allows you to track your true typing speeds in everyday typing activities such as writing an email or a typing up a Facebook post. Pin the extension for the best effects.
Grundläggande Information om Tillägg
Namn | Daily Typer |
ID | pkafjlgablpiocffekncinpmfojicfgi |
Officiell webbadress | https://chromewebstore.google.com/detail/daily-typer/pkafjlgablpiocffekncinpmfojicfgi |
Beskrivning | Know your real typing speed in everyday typing activities. |
Filstorlek | 465 KB |
Antal Installationer | 534 |
Aktuell Version | 2.0 |
Senast Uppdaterad | 2021-06-25 |
Publiceringsdatum | 2021-01-12 |
Betyg | 3.83/5 Totalt 6 Betyg |
Utvecklare | timjang3 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/timjang3/Daily-Typer |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Daily Typer", "version": "2.0", "description": "Know your real typing speed in everyday typing activities.", "browser_action": { "default_popup": "popup.html", "default_icon": "Daily TyperN.png" }, "permissions": [ "storage", "activeTab", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "background": { "persistent": false, "scripts": [ "background.js" ] } } |