Makes everything to lowercase so you don't have to read that ugly CAPSLOCK anymore.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en",
"icons": {
"112": "images/logo/SalemCash112.png"
},
"permissions": [
"storage",
"activeTab",
"webNavigation"
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"112": "images/logo/SalemCash112.png"
}
},
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*"
],
"js": [
"content.js"
]
}
],
"options_ui": {
"open_in_tab": true,
"page": "options/options.html"
},
"version": "0.1",
"version_name": "0.1 beta",
"manifest_version": 3,
"author": "Loxbie",
"homepage_url": "https://loxbie.com/",
"web_accessible_resources": [
{
"resources": [
"manifest.json",
"options/options.html"
],
"matches": [
"https://*.youtube.com/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}