diff options
| author | Kamran Ahmed <kamranahmed.se@gmail.com> | 2018-08-18 23:09:53 +0400 |
|---|---|---|
| committer | Kamran Ahmed <kamranahmed.se@gmail.com> | 2018-08-18 23:09:53 +0400 |
| commit | d7d6e09ff24dbbf9ab06f2e1874d7d314f30ea2c (patch) | |
| tree | 890a3257e970ec0587cfe911d7cf9d3e01f70f99 /public | |
| parent | Change from options_page to options_ui (#17) (diff) | |
| download | githunt-d7d6e09ff24dbbf9ab06f2e1874d7d314f30ea2c.tar.gz | |
Initial commit with create-react-app
Diffstat (limited to 'public')
| -rw-r--r-- | public/favicon.ico | bin | 0 -> 3870 bytes | |||
| -rw-r--r-- | public/img/icon128.png | bin | 0 -> 5438 bytes | |||
| -rw-r--r-- | public/img/icon16.png | bin | 0 -> 536 bytes | |||
| -rw-r--r-- | public/img/icon48.png | bin | 0 -> 16848 bytes | |||
| -rw-r--r-- | public/index.html | 40 | ||||
| -rw-r--r-- | public/manifest.json | 26 |
6 files changed, 66 insertions, 0 deletions
diff --git a/public/favicon.ico b/public/favicon.ico Binary files differnew file mode 100644 index 0000000..a11777c --- /dev/null +++ b/public/favicon.ico diff --git a/public/img/icon128.png b/public/img/icon128.png Binary files differnew file mode 100644 index 0000000..33eb7cf --- /dev/null +++ b/public/img/icon128.png diff --git a/public/img/icon16.png b/public/img/icon16.png Binary files differnew file mode 100644 index 0000000..11394ec --- /dev/null +++ b/public/img/icon16.png diff --git a/public/img/icon48.png b/public/img/icon48.png Binary files differnew file mode 100644 index 0000000..b2b8837 --- /dev/null +++ b/public/img/icon48.png diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..ed0ebaf --- /dev/null +++ b/public/index.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <meta name="theme-color" content="#000000"> + <!-- + manifest.json provides metadata used when your web app is added to the + homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ + --> + <link rel="manifest" href="%PUBLIC_URL%/manifest.json"> + <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> + <!-- + Notice the use of %PUBLIC_URL% in the tags above. + It will be replaced with the URL of the `public` folder during the build. + Only files inside the `public` folder can be referenced from the HTML. + + Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will + work correctly both with client-side routing and a non-root public URL. + Learn how to configure a non-root public URL by running `npm run build`. + --> + <title>React App</title> + </head> + <body> + <noscript> + You need to enable JavaScript to run this app. + </noscript> + <div id="root"></div> + <!-- + This HTML file is a template. + If you open it directly in the browser, you will see an empty page. + + You can add webfonts, meta tags, or analytics to this file. + The build step will place the bundled scripts into the <body> tag. + + To begin the development, run `npm start` or `yarn start`. + To create a production bundle, use `npm run build` or `yarn build`. + --> + </body> +</html> diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..09ea19b --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,26 @@ +{ + "manifest_version": 2, + "name": "Githunt", + "short_name": "Githunt", + "description": "Replace the new tab with a list of trending repositories on github belonging to any technology that you chose.", + "version": "2.1", + "permissions": [ + "tabs", + "storage", + "webNavigation", + "*://*.github.com/*" + ], + "icons": { + "16": "/img/icon16.png", + "48": "/img/icon48.png", + "128": "/img/icon128.png" + }, + "chrome_url_overrides": { + "newtab": "index.html" + }, + "homepage_url": "http://kamranahmed.info/", + "browser_action": { + "default_title": "Githunt", + "default_icon": "/img/icon128.png" + } +} |
