first commit

This commit is contained in:
klein panic
2024-09-29 01:05:25 -04:00
commit 2bcc806b8b
670 changed files with 96169 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "ChromeLens",
"description": "Visual impairment simulation and auditing tools to develop for accessibility.",
"version": "0.0.10",
"minimum_chrome_version": "42",
"devtools_page": "main.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [ "main.html", "panel.html", "build/backend.js"],
"background": {
"scripts": [ "background.js" ]
},
"icons": {
"48": "icons/chromelens2-48.png",
"128": "icons/chromelens2-128.png"
},
"permissions": [
"http://*/*",
"https://*/*",
"activeTab"
]
}