Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "AutoTyper",
"description": "This extension automatically types on nitrotype.com.",
"version": "1.3.1",
"icons": {
"16": "assets\/icons\/favicon-16x16.png",
"32": "assets\/icons\/favicon-32x32.png",
"48": "assets\/icons\/favicon-32x32.png",
"128": "assets\/icons\/favicon-32x32.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"id": "auto-typing",
"matches": [
"https:\/\/*.nitrotype.com\/garage"
],
"exclude_matches": [
"*:\/\/*\/race"
],
"js": [
"AutoTyping.js"
],
"run_at": "document_end"
},
{
"id": "active-session",
"matches": [
"https:\/\/*.nitrotype.com\/*"
],
"js": [
"ActiveSession.js"
],
"run_at": "document_end"
}
]
}