Inspect and view changes in T.read - AI based reading assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "T.read - AI based reading assistant",
"version": "1.0.2",
"description": "For those who love reading and use free APIs to make it more efficient and convenient. Happy reading!",
"manifest_version": 3,
"action": {},
"icons": {
"16": "assets/images/logo-16.png",
"48": "assets/images/logo-48.png",
"128": "assets/images/logo-128.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab",
"sidePanel",
"scripting"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"side_panel": {
"default_path": "index.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com;",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"index.html",
"assets/*",
"main.js",
"*.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [],
"js": [
"content-script.js"
],
"all_frames": false
}
]
}