├── README.md ├── background ├── commands.js ├── setup.js └── webstore-fix.js ├── content-scripts └── window-open-fix.js ├── icon.png ├── manifest.json └── new-tab ├── background-controller.js ├── battery-display.js ├── date-display.js ├── drag-controller.js ├── fullscreen-controller.js ├── main.html ├── main.js ├── style.css └── time-display.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/README.md -------------------------------------------------------------------------------- /background/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/background/commands.js -------------------------------------------------------------------------------- /background/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/background/setup.js -------------------------------------------------------------------------------- /background/webstore-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/background/webstore-fix.js -------------------------------------------------------------------------------- /content-scripts/window-open-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/content-scripts/window-open-fix.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/manifest.json -------------------------------------------------------------------------------- /new-tab/background-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/background-controller.js -------------------------------------------------------------------------------- /new-tab/battery-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/battery-display.js -------------------------------------------------------------------------------- /new-tab/date-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/date-display.js -------------------------------------------------------------------------------- /new-tab/drag-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/drag-controller.js -------------------------------------------------------------------------------- /new-tab/fullscreen-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/fullscreen-controller.js -------------------------------------------------------------------------------- /new-tab/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/main.html -------------------------------------------------------------------------------- /new-tab/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/main.js -------------------------------------------------------------------------------- /new-tab/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/style.css -------------------------------------------------------------------------------- /new-tab/time-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bypassiwastaken/skiovox-helper/HEAD/new-tab/time-display.js --------------------------------------------------------------------------------