Inspect and view changes in Cyrillic To Latin 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
{
"name": "CyrillicToLatin",
"version": "2.0",
"description": "Converts all Serbian cyrillic text to latin.",
"manifest_version": 2,
"icons": {
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"browser_style": true,
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"script.js"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html"
}
}