Inspect and view changes in Web Translation API for sakuraLLM model 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": "Web Translation API",
"version": "1.1",
"description": "A browser extension to translate text using API.",
"browser_specific_settings": {
"gecko": {
"id": "translation@example.com",
"strict_min_version": "79.0"
}
},
"permissions": [
"activeTab",
"storage",
"contextMenus",
"<all_urls>",
"unlimitedStorage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"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"
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": true
}
}