Keyboard Lock
An extension to lock your keyboard. Lock it when watching Youtube with kids.
Vad är Keyboard Lock?
Keyboard Lock är en Chrome-tillägg utvecklad av Nir Moav, och dess huvudfunktion är "An extension to lock your keyboard. Lock it when watching Youtube with kids.".
Tilläggsskärmbilder
Ladda ner Keyboard Lock-förlängningens CRX-fil
Ladda ner Keyboard Lock-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
- The extension lets you lock and unlock your keyboard with a single click.
- Prevent your toddler messing around when watching animal videos 🐻
- Simple & free
- You can tip me with a cup of Ko-Fi ☕️ if you like at: https://ko-fi.com/getnirm
Thank you for your support 🙏 Grundläggande Information om Tillägg
| Namn | |
| ID | egchhmakkadlgkamakegnhokjkbkhjkm |
| Officiell webbadress | https://chromewebstore.google.com/detail/keyboard-lock/egchhmakkadlgkamakegnhokjkbkhjkm |
| Beskrivning | An extension to lock your keyboard. Lock it when watching Youtube with kids. |
| Filstorlek | 65.28 KB |
| Antal Installationer | 3,000 |
| Aktuell Version | 0.1.3 |
| Senast Uppdaterad | 2024-01-28 |
| Publiceringsdatum | 2020-05-11 |
| Betyg | 3.43/5 Totalt 7 Betyg |
| Utvecklare | Nir Moav |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://ko-fi.com/getnirm |
| Hjälpsida URL | https://ko-fi.com/getnirm |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Keyboard Lock",
"version": "0.1.3",
"manifest_version": 3,
"description": "An extension to lock your keyboard. Lock it when watching Youtube with kids.",
"homepage_url": "https:\/\/nirgit.github.io",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"action": {
"default_icon": "icons\/icon19.png",
"default_title": "Keyboard Lock",
"default_popup": "src\/browser_action\/browser_action.html"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"background": {
"service_worker": "js\/back.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"js\/common.js",
"src\/inject\/inject.js"
]
}
]
} | |