Inspect and view changes in eliAI 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": 2,
"name": "eliAI",
"version": "1.6",
"description": "Markiere Fragen auf einer Webseite, sende sie an eine API und erhalte Antworten.",
"author": "Daniel Zurmühle",
"homepage_url": "https://zwebsites.ch",
"permissions": [
"activeTab",
"contextMenus",
"storage",
"https://zwebsites.ch/",
"https://api.together.xyz/"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{dcf5ecf4-fa3c-46ea-8f58-f9e90e87af02}"
}
}
}