Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Language Switcher for Microsoft Learn",
"description": "A browser extension that rewrites the language code in the URL to navigate between localized Microsoft Learn pages instantly.",
"version": "1.2",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"action": {
"matches": [
"*:\/\/learn.microsoft.com\/*"
],
"js": [
"background.js"
],
"default_title": "Language Switcher for Microsoft Learn"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"contextMenus"
],
"host_permissions": [
"*:\/\/learn.microsoft.com\/*"
],
"options_page": "options.html"
}