Inspect and view changes in EasyDesktop 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
{
"manifest_version": 3,
"name": "EasyDesktop",
"description": "manage your bookmarks on easy-desktop",
"options_ui": {
"page": "src/pages/options/index.html"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"chrome_url_overrides": {
"newtab": "src/app/index.html"
},
"icons": {
"128": "icon128.png"
},
"permissions": [
"bookmarks",
"storage",
"favicon"
],
"optional_host_permissions": [
"http://*/*",
"https://*/*"
],
"devtools_page": "src/pages/devtools/index.html",
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"_favicon/*",
"contentStyle.css",
"icon128.png",
"icon32.png"
],
"use_dynamic_url": false
}
],
"default_locale": "en",
"version": "0.2.3",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}