Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Human Paste",
"version": "2.0",
"description": "Paste text like a human typing with adjustable speed.",
"permissions": [
"storage"
],
"icons": {
"16": "human_paste_logo.png",
"48": "human_paste_logo.png",
"128": "human_paste_logo.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Human Paste",
"default_icon": {
"16": "human_paste_logo.png",
"48": "human_paste_logo.png",
"128": "human_paste_logo.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
]
}