Inspect and view changes in InFold - Get the full story 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
{
"manifest_version": 3,
"name": "InFold",
"description": "We're here to help you get context, delve deeper, and learn more.",
"version": "1.1.5",
"icons": {
"64": "images/icons/icon_64.png",
"128": "images/icons/icon_128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "contact@infold.ai"
}
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"*://*.reddit.com/*",
"*://*.twitter.com/*"
],
"action": {
"default_title": "Related items",
"default_popup": "popup.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.reddit.com/*",
"*://*.twitter.com/*"
],
"js": [
"content.js"
],
"css": [
"css/all.min.css",
"css/main.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images/*",
"webfonts/*"
],
"matches": [
"<all_urls>",
"<all_urls>"
]
}
]
}