Inspect and view changes in Special Case Convert 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": "Special Case Convert",
"short_name": "Special Case",
"version": "1.0.1",
"author": "tatan12345oooRoblox@gmail.com",
"description": "Convert selected text to superscript, subscript, and other special cases.",
"permissions": [
"contextMenus",
"scripting",
"activeTab"
],
"optional_host_permissions": [
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "scconvert@theepicmatthew.com",
"strict_min_version": "128.0"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
}
}