Easily and quickly transform text to “Unicode fonts” 𝐟𝐨𝐫 𝔢𝔵𝔞𝔪𝔭𝔩𝔢 𝚕𝚒𝚔𝚎 𝘵𝘩𝘪𝘴 as text characters and change the casing of texts.
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": "__MSG_extensionName__",
"short_name": "__MSG_extensionNameShort__",
"version": "0.7",
"author": "Teal Dulcet, rugk",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/rugk/unicodify",
"options_ui": {
"page": "options/options.html"
},
"background": {
"scripts": [
"background/modules/InstallUpgrade.js",
"background/background.js"
],
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
"content_scripts/autocorrect.js"
]
}
],
"content_security_policy": "default-src 'self'",
"icons": {
"16": "icons/icon.svg",
"32": "icons/icon.svg",
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"default_locale": "en",
"permissions": [
"storage",
"<all_urls>",
"menus",
"tabs",
"notifications"
],
"browser_specific_settings": {
"gecko": {
"id": "unicodify@rugk.github.io",
"strict_min_version": "112.0"
}
}
}