Rename logo and add 32x32 version

This commit is contained in:
manubo
2019-09-19 09:21:59 +02:00
parent 7023b4b482
commit 92423049ac
8 changed files with 10 additions and 15 deletions

View File

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
src/images/moco-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -1,6 +1,6 @@
import React from "react" import React from "react"
import PropTypes from "prop-types" import PropTypes from "prop-types"
import logoUrl from "images/logo.png" import logoUrl from "images/moco-159x159.png"
const Bubble = ({ bookedHours }) => ( const Bubble = ({ bookedHours }) => (
<div className="moco-bx-bubble-inner"> <div className="moco-bx-bubble-inner">

View File

@@ -1,6 +1,6 @@
import React from "react" import React from "react"
import PropTypes from "prop-types" import PropTypes from "prop-types"
import logo from "images/logo.png" import logo from "images/moco-159x159.png"
const UnknownError = ({ message = "Unbekannter Fehler" }) => ( const UnknownError = ({ message = "Unbekannter Fehler" }) => (
<div className="moco-bx-error-container"> <div className="moco-bx-error-container">

View File

@@ -1,6 +1,6 @@
import React from "react" import React from "react"
import { isChrome } from "utils/browser" import { isChrome } from "utils/browser"
import logo from "images/logo.png" import logo from "images/moco-159x159.png"
import firefoxAddons from "images/firefox_addons.png" import firefoxAddons from "images/firefox_addons.png"
const UpgradeRequiredError = () => ( const UpgradeRequiredError = () => (

View File

@@ -1,6 +1,6 @@
import React from "react" import React from "react"
import PropTypes from "prop-types" import PropTypes from "prop-types"
import logoUrl from "images/logo.png" import logoUrl from "images/moco-159x159.png"
const Header = ({ subdomain }) => ( const Header = ({ subdomain }) => (
<div className="moco-bx-logo__container"> <div className="moco-bx-logo__container">

View File

@@ -4,26 +4,21 @@
"description": "MOCO Zeiterfassung Plugin", "description": "MOCO Zeiterfassung Plugin",
"version": "0.9.20", "version": "0.9.20",
"manifest_version": 2, "manifest_version": 2,
"description": "MOCO Time Tracking Plugin",
"icons": { "icons": {
"16": "src/images/logo.png", "16": "src/images/moco-32x32.png",
"32": "src/images/logo.png", "32": "src/images/moco-32x32.png",
"48": "src/images/logo.png", "48": "src/images/moco-159x159.png",
"128": "src/images/logo.png" "128": "src/images/moco-159x159.png"
}, },
"options_ui": { "options_ui": {
"page": "options.html" "page": "options.html"
}, },
"permissions": [ "permissions": ["https://*.mocoapp.com/*", "storage", "tabs"],
"https://*.mocoapp.com/*",
"storage",
"tabs"
],
"background": { "background": {
"page": "background.html" "page": "background.html"
}, },
"browser_action": { "browser_action": {
"default_icon": "src/images/logo.png" "default_icon": "src/images/moco-32x32.png"
}, },
"content_scripts": [ "content_scripts": [
{ {