Browse Source

first commit

master
stingl 3 years ago
commit
c9fb79e86c
  1. 6
      background.js
  2. BIN
      images/logo.png
  3. 19
      manifest.json
  4. 22
      popup.html

6
background.js

@ -0,0 +1,6 @@
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';

BIN
images/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

19
manifest.json

@ -0,0 +1,19 @@
{
"name": "ttrack.cc",
"version": "3.0",
"description": "The free web time-tracker ⏱",
"permissions": ["declarativeContent", "storage"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "images/logo.png",
"32": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"manifest_version": 3
}

22
popup.html

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>ttrack.cc</title>
<style>
body {
margin: 0;
padding: 0;
}
#frame {
border: none;
margin: 0;
height: 400px;
width: 600px;
}
</style>
</head>
<body>
<iframe src="https://ttrack.cc/" id="frame"></iframe>
</body>
</html>
Loading…
Cancel
Save