Inspect and view changes in MyMyApps 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "MyMyApps",
"version": "1.1",
"description": "Easily access and manage your Microsoft MyApps links with this Chrome extension. Automatically fetch and display your app links!",
"permissions": [
"storage",
"windows"
],
"background": {
"service_worker": "./public/background.js"
},
"action": {
"default_popup": "./public/index.html",
"default_title": "Link Extractor",
"default_icon": {
"128": "icon.png"
}
},
"content_scripts": [
{
"matches": [
"https://myapps.microsoft.com/refreshapps"
],
"js": [
"./public/contentScript.js"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+O",
"mac": "Command+Shift+O"
},
"description": "Open MyMyApps"
}
}
}