├── .vs ├── PowerWidgetsGit │ ├── config │ │ └── applicationhost.config │ └── v16 │ │ └── .suo ├── ProjectSettings.json ├── VSWorkspaceState.json ├── slnx.sqlite └── tasks.vs.json ├── .vscode └── launch.json ├── BingSiteAuth.xml ├── Power Widgets.Wasm.proj ├── PowerEditor ├── BingSiteAuth.xml ├── Power Editor.WASM.proj ├── Power Editor.WASM.proj~RFab5990f.TMP ├── css │ ├── style.css │ └── style.css~RFa940413.TMP ├── favicon.ico ├── fonts │ ├── FluentSystemIcons-Filled.ttf │ ├── FluentSystemIcons-Regular.css │ └── FluentSystemIcons-Regular.ttf ├── img │ ├── app-view.png │ ├── app-view1.png │ ├── app-view2.png │ ├── app_logo.png │ └── background.jpg ├── index.html ├── index.html~RFaaa25f8.TMP └── index.js ├── PowerWidgets.Wasm.proj ├── README.md ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── apple-touch-icon.png ├── assets ├── Dark-screen-hub.png ├── Dark-screen-laptop.png ├── Dark-screen-xbox.png ├── Light-screen-laptop.png ├── MicrosoftStoreGet.png ├── PowerWidgetsGitHub.jpg ├── READMEhero.png ├── app-logo.png ├── dark-screen.png ├── light-screen.png └── update1.6hero.png ├── blog ├── BingSiteAuth.xml ├── css │ └── style.css ├── fonts │ ├── FluentSystemIcons-Filled.ttf │ ├── FluentSystemIcons-Regular.css │ └── FluentSystemIcons-Regular.ttf ├── img │ ├── ClockScreenshot.png │ ├── EdgeScreenshot.png │ ├── FastActions.png │ ├── NotesScreenshot.png │ ├── OutlookWidget.png │ ├── WeatherScreenshot.png │ ├── background-dark.jpg │ ├── background-light.jpg │ ├── logo-asset.png │ ├── twitter.png │ ├── update1.5.png │ ├── update1.6.1.png │ ├── update1.6.1screenshot0.png │ └── update1.6.png ├── index.html ├── js │ └── main.js ├── pages │ ├── home.html │ ├── update1.5.html │ ├── update1.6.1.html │ └── update1.6.html └── sitemap.xml ├── browserconfig.xml ├── changelog ├── assets │ └── version162.png ├── css │ ├── style-dark.css │ └── style-light.css ├── main.js └── version162.html ├── developers ├── css │ └── style.css ├── img │ └── Me.jpg ├── index.html └── index.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts ├── FluentSystemIcons-Filled.ttf ├── FluentSystemIcons-Regular.css └── FluentSystemIcons-Regular.ttf ├── gift ├── css │ └── style.css ├── index.html └── index.js ├── google1dd0008e666fdb5a.html ├── home.html ├── img ├── MicrosoftEdgeWidget.png ├── Version 1.6 update hero.png ├── app-preview.png ├── app_logo.png ├── dark_background.jpg ├── fast-actions-assets-dark.png ├── fast-actions-assets.png ├── light_background.jpg └── screenshots │ ├── ClockScreenshot.png │ ├── EdgeScreenshot.png │ ├── FastActions.png │ ├── NotesScreenshot.png │ ├── OutlookWidget.png │ └── WeatherScreenshot.png ├── index.html ├── index.js ├── js └── ThemeHelper.js ├── main.js ├── mobile.js ├── mstile-150x150.png ├── privacy └── index.html ├── safari-pinned-tab.svg ├── screenshots ├── 0.png ├── Hero logo.png └── Screenshot 2021-06-18 174251.png ├── site.webmanifest ├── style.css ├── style.css~RFb367661.TMP ├── style_dark.css ├── styles ├── splashscreen.css └── winui-web.css └── www ├── apps.html ├── apps.js ├── css └── splashscreen.css ├── download.html ├── download.js ├── extensions.html ├── extensions.js ├── feed.html ├── feed.js ├── home.html ├── img ├── PowerDesktop.png ├── app_logo.png ├── apps.png ├── background.jpg ├── clock.png ├── edge.png ├── notes.png ├── onenote.png ├── outlook.png ├── todo.png └── weather.png ├── indev ├── index.html ├── index.js └── style.css ├── index.html ├── insider ├── img │ └── PowerDesktop.png ├── index.html ├── index.js └── style.css ├── main.js ├── privacy ├── img │ └── PowerDesktop.png ├── index.html └── style.css ├── splashscreen.js └── style.css /.vs/PowerWidgetsGit/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/.vs/PowerWidgetsGit/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/PowerWidgetsGit/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/.vs/PowerWidgetsGit/v16/.suo -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vs/tasks.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/.vs/tasks.vs.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/BingSiteAuth.xml -------------------------------------------------------------------------------- /Power Widgets.Wasm.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/Power Widgets.Wasm.proj -------------------------------------------------------------------------------- /PowerEditor/BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/BingSiteAuth.xml -------------------------------------------------------------------------------- /PowerEditor/Power Editor.WASM.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/Power Editor.WASM.proj -------------------------------------------------------------------------------- /PowerEditor/Power Editor.WASM.proj~RFab5990f.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/Power Editor.WASM.proj~RFab5990f.TMP -------------------------------------------------------------------------------- /PowerEditor/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/css/style.css -------------------------------------------------------------------------------- /PowerEditor/css/style.css~RFa940413.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/css/style.css~RFa940413.TMP -------------------------------------------------------------------------------- /PowerEditor/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/favicon.ico -------------------------------------------------------------------------------- /PowerEditor/fonts/FluentSystemIcons-Filled.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/fonts/FluentSystemIcons-Filled.ttf -------------------------------------------------------------------------------- /PowerEditor/fonts/FluentSystemIcons-Regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/fonts/FluentSystemIcons-Regular.css -------------------------------------------------------------------------------- /PowerEditor/fonts/FluentSystemIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/fonts/FluentSystemIcons-Regular.ttf -------------------------------------------------------------------------------- /PowerEditor/img/app-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/img/app-view.png -------------------------------------------------------------------------------- /PowerEditor/img/app-view1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/img/app-view1.png -------------------------------------------------------------------------------- /PowerEditor/img/app-view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/img/app-view2.png -------------------------------------------------------------------------------- /PowerEditor/img/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/img/app_logo.png -------------------------------------------------------------------------------- /PowerEditor/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/img/background.jpg -------------------------------------------------------------------------------- /PowerEditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/index.html -------------------------------------------------------------------------------- /PowerEditor/index.html~RFaaa25f8.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/index.html~RFaaa25f8.TMP -------------------------------------------------------------------------------- /PowerEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerEditor/index.js -------------------------------------------------------------------------------- /PowerWidgets.Wasm.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/PowerWidgets.Wasm.proj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/README.md -------------------------------------------------------------------------------- /android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/android-chrome-192x192.png -------------------------------------------------------------------------------- /android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/android-chrome-256x256.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/Dark-screen-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/Dark-screen-hub.png -------------------------------------------------------------------------------- /assets/Dark-screen-laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/Dark-screen-laptop.png -------------------------------------------------------------------------------- /assets/Dark-screen-xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/Dark-screen-xbox.png -------------------------------------------------------------------------------- /assets/Light-screen-laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/Light-screen-laptop.png -------------------------------------------------------------------------------- /assets/MicrosoftStoreGet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/MicrosoftStoreGet.png -------------------------------------------------------------------------------- /assets/PowerWidgetsGitHub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/PowerWidgetsGitHub.jpg -------------------------------------------------------------------------------- /assets/READMEhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/READMEhero.png -------------------------------------------------------------------------------- /assets/app-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/app-logo.png -------------------------------------------------------------------------------- /assets/dark-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/dark-screen.png -------------------------------------------------------------------------------- /assets/light-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/light-screen.png -------------------------------------------------------------------------------- /assets/update1.6hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/assets/update1.6hero.png -------------------------------------------------------------------------------- /blog/BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/BingSiteAuth.xml -------------------------------------------------------------------------------- /blog/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/css/style.css -------------------------------------------------------------------------------- /blog/fonts/FluentSystemIcons-Filled.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/fonts/FluentSystemIcons-Filled.ttf -------------------------------------------------------------------------------- /blog/fonts/FluentSystemIcons-Regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/fonts/FluentSystemIcons-Regular.css -------------------------------------------------------------------------------- /blog/fonts/FluentSystemIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/fonts/FluentSystemIcons-Regular.ttf -------------------------------------------------------------------------------- /blog/img/ClockScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/ClockScreenshot.png -------------------------------------------------------------------------------- /blog/img/EdgeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/EdgeScreenshot.png -------------------------------------------------------------------------------- /blog/img/FastActions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/FastActions.png -------------------------------------------------------------------------------- /blog/img/NotesScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/NotesScreenshot.png -------------------------------------------------------------------------------- /blog/img/OutlookWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/OutlookWidget.png -------------------------------------------------------------------------------- /blog/img/WeatherScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/WeatherScreenshot.png -------------------------------------------------------------------------------- /blog/img/background-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/background-dark.jpg -------------------------------------------------------------------------------- /blog/img/background-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/background-light.jpg -------------------------------------------------------------------------------- /blog/img/logo-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/logo-asset.png -------------------------------------------------------------------------------- /blog/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/twitter.png -------------------------------------------------------------------------------- /blog/img/update1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/update1.5.png -------------------------------------------------------------------------------- /blog/img/update1.6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/update1.6.1.png -------------------------------------------------------------------------------- /blog/img/update1.6.1screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/update1.6.1screenshot0.png -------------------------------------------------------------------------------- /blog/img/update1.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/img/update1.6.png -------------------------------------------------------------------------------- /blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/index.html -------------------------------------------------------------------------------- /blog/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/js/main.js -------------------------------------------------------------------------------- /blog/pages/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/pages/home.html -------------------------------------------------------------------------------- /blog/pages/update1.5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/pages/update1.5.html -------------------------------------------------------------------------------- /blog/pages/update1.6.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/pages/update1.6.1.html -------------------------------------------------------------------------------- /blog/pages/update1.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/pages/update1.6.html -------------------------------------------------------------------------------- /blog/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/blog/sitemap.xml -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/browserconfig.xml -------------------------------------------------------------------------------- /changelog/assets/version162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/changelog/assets/version162.png -------------------------------------------------------------------------------- /changelog/css/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/changelog/css/style-dark.css -------------------------------------------------------------------------------- /changelog/css/style-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/changelog/css/style-light.css -------------------------------------------------------------------------------- /changelog/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/changelog/main.js -------------------------------------------------------------------------------- /changelog/version162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/changelog/version162.html -------------------------------------------------------------------------------- /developers/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/developers/css/style.css -------------------------------------------------------------------------------- /developers/img/Me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/developers/img/Me.jpg -------------------------------------------------------------------------------- /developers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/developers/index.html -------------------------------------------------------------------------------- /developers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/developers/index.js -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/FluentSystemIcons-Filled.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/fonts/FluentSystemIcons-Filled.ttf -------------------------------------------------------------------------------- /fonts/FluentSystemIcons-Regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/fonts/FluentSystemIcons-Regular.css -------------------------------------------------------------------------------- /fonts/FluentSystemIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/fonts/FluentSystemIcons-Regular.ttf -------------------------------------------------------------------------------- /gift/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/gift/css/style.css -------------------------------------------------------------------------------- /gift/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/gift/index.html -------------------------------------------------------------------------------- /gift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/gift/index.js -------------------------------------------------------------------------------- /google1dd0008e666fdb5a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/google1dd0008e666fdb5a.html -------------------------------------------------------------------------------- /home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/home.html -------------------------------------------------------------------------------- /img/MicrosoftEdgeWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/MicrosoftEdgeWidget.png -------------------------------------------------------------------------------- /img/Version 1.6 update hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/Version 1.6 update hero.png -------------------------------------------------------------------------------- /img/app-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/app-preview.png -------------------------------------------------------------------------------- /img/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/app_logo.png -------------------------------------------------------------------------------- /img/dark_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/dark_background.jpg -------------------------------------------------------------------------------- /img/fast-actions-assets-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/fast-actions-assets-dark.png -------------------------------------------------------------------------------- /img/fast-actions-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/fast-actions-assets.png -------------------------------------------------------------------------------- /img/light_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/light_background.jpg -------------------------------------------------------------------------------- /img/screenshots/ClockScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/screenshots/ClockScreenshot.png -------------------------------------------------------------------------------- /img/screenshots/EdgeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/screenshots/EdgeScreenshot.png -------------------------------------------------------------------------------- /img/screenshots/FastActions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/screenshots/FastActions.png -------------------------------------------------------------------------------- /img/screenshots/NotesScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/screenshots/NotesScreenshot.png -------------------------------------------------------------------------------- /img/screenshots/OutlookWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/screenshots/OutlookWidget.png -------------------------------------------------------------------------------- /img/screenshots/WeatherScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/img/screenshots/WeatherScreenshot.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/index.js -------------------------------------------------------------------------------- /js/ThemeHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/js/ThemeHelper.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/main.js -------------------------------------------------------------------------------- /mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/mobile.js -------------------------------------------------------------------------------- /mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/mstile-150x150.png -------------------------------------------------------------------------------- /privacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/privacy/index.html -------------------------------------------------------------------------------- /safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/safari-pinned-tab.svg -------------------------------------------------------------------------------- /screenshots/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/screenshots/0.png -------------------------------------------------------------------------------- /screenshots/Hero logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/screenshots/Hero logo.png -------------------------------------------------------------------------------- /screenshots/Screenshot 2021-06-18 174251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/screenshots/Screenshot 2021-06-18 174251.png -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/site.webmanifest -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/style.css -------------------------------------------------------------------------------- /style.css~RFb367661.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/style.css~RFb367661.TMP -------------------------------------------------------------------------------- /style_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/style_dark.css -------------------------------------------------------------------------------- /styles/splashscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/styles/splashscreen.css -------------------------------------------------------------------------------- /styles/winui-web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/styles/winui-web.css -------------------------------------------------------------------------------- /www/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/apps.html -------------------------------------------------------------------------------- /www/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/apps.js -------------------------------------------------------------------------------- /www/css/splashscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/css/splashscreen.css -------------------------------------------------------------------------------- /www/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/download.html -------------------------------------------------------------------------------- /www/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/download.js -------------------------------------------------------------------------------- /www/extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/extensions.html -------------------------------------------------------------------------------- /www/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/extensions.js -------------------------------------------------------------------------------- /www/feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/feed.html -------------------------------------------------------------------------------- /www/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/feed.js -------------------------------------------------------------------------------- /www/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/home.html -------------------------------------------------------------------------------- /www/img/PowerDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/PowerDesktop.png -------------------------------------------------------------------------------- /www/img/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/app_logo.png -------------------------------------------------------------------------------- /www/img/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/apps.png -------------------------------------------------------------------------------- /www/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/background.jpg -------------------------------------------------------------------------------- /www/img/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/clock.png -------------------------------------------------------------------------------- /www/img/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/edge.png -------------------------------------------------------------------------------- /www/img/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/notes.png -------------------------------------------------------------------------------- /www/img/onenote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/onenote.png -------------------------------------------------------------------------------- /www/img/outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/outlook.png -------------------------------------------------------------------------------- /www/img/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/todo.png -------------------------------------------------------------------------------- /www/img/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/img/weather.png -------------------------------------------------------------------------------- /www/indev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/indev/index.html -------------------------------------------------------------------------------- /www/indev/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/indev/index.js -------------------------------------------------------------------------------- /www/indev/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/indev/style.css -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/index.html -------------------------------------------------------------------------------- /www/insider/img/PowerDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/insider/img/PowerDesktop.png -------------------------------------------------------------------------------- /www/insider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/insider/index.html -------------------------------------------------------------------------------- /www/insider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/insider/index.js -------------------------------------------------------------------------------- /www/insider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/insider/style.css -------------------------------------------------------------------------------- /www/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/main.js -------------------------------------------------------------------------------- /www/privacy/img/PowerDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/privacy/img/PowerDesktop.png -------------------------------------------------------------------------------- /www/privacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/privacy/index.html -------------------------------------------------------------------------------- /www/privacy/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/privacy/style.css -------------------------------------------------------------------------------- /www/splashscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/splashscreen.js -------------------------------------------------------------------------------- /www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryBorodiy/PowerWidgets/HEAD/www/style.css --------------------------------------------------------------------------------