Skip to content

Commit

Permalink
Add small icons (ouranos, gaia, howrse) in popup window
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwenillia committed May 14, 2022
1 parent 61f35a4 commit 763a2c5
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 6 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
# Better Equideow

Extension chrome pour Equideow qui permet d'obtenir plus facilement les
différentes informations du jeux comme le blup, le PG, les compétences mais
aussi d'afficher un coefficient de victoire pour mieux gérer ses blups notamment

---

## Better Howrse

Small chrome extension for Howrse that allow you to get more informations about
your horses and competition difficulties.

---
[![Last Version](https://img.shields.io/badge/last%20version-v1.2.6-informational)](#)
[![DeepScan grade](https://deepscan.io/api/teams/17688/projects/21040/branches/592899/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=17688&pid=21040&bid=592899)
<br>
[![Total alerts](https://img.shields.io/lgtm/alerts/g/Gwenillia/Better-Equideow.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Gwenillia/Better-Equideow/alerts/)
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/Gwenillia/Better-Equideow.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/Gwenillia/Better-Equideow/context:javascript)

[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/gkopbgamdhaolbjalfcbmbjkjcmgffjp)](https://chrome.google.com/webstore/detail/better-equideow/gkopbgamdhaolbjalfcbmbjkjcmgffjp)
<br>
[![Mozilla Add-on](https://img.shields.io/amo/v/better-equideow)](https://addons.mozilla.org/fr/firefox/addon/better-equideow/)
<br>
[![Edge Add-on](https://img.shields.io/badge/dynamic/json?label=edge%20add-on&prefix=v&query=%24.version&url=https%3A%2F%2Fmicrosoftedge.microsoft.com%2Faddons%2Fgetproductdetailsbycrxid%2Finmcglblgnoceekbpkheihppombhdenf)](https://microsoftedge.microsoft.com/addons/detail/arxivutils/inmcglblgnoceekbpkheihppombhdenf)
4 changes: 4 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
"default_locale": "fr",
"version": "1.2.6",
"manifest_version": 3,
"action": {
"default_title": "Click to see your horse sells",
"default_popup": "popup.html"
},
"author": "TC-Dev",
"icons": {
"16": "/images/icon-16x16.png",
Expand Down
11 changes: 11 additions & 0 deletions popup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* Copyright (c) 2022. Gwen Tripet-Costet
* This file is part of Better Equideow (Better Howrse).
* Better Equideow (Better Howrse) is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
* Better Equideow (Better Howrse) is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

img {
margin: 0.5em 0;
}
25 changes: 25 additions & 0 deletions popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!--
~ Copyright (c) 2022. Gwen Tripet-Costet
~ This file is part of Better Equideow (Better Howrse).
~ Better Equideow (Better Howrse) is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
~ Better Equideow (Better Howrse) is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
~ You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
-->

<!doctype html>
<html lang='en'>
<head>
<link rel='stylesheet' type='text/css' href='popup.css'>
<script defer type='text/javascript' src='popupSelling.js'></script>
</head>

<body id='frame'>
<a target='_blank' ref='noopener noreferrer'
href='https://www.ouranos.equideow.com/marche/vente/?type=enchere&typeSave=1&mesVentes=1'><img
src='https://www.equideow.com/media/equideo/image/interface/icon/ouranos-register.png?25196949' /></a>
<a target='_blank' ref='noopener noreferrer' href='https://www.gaia.equideow.com/'><img
src='https://www.equideow.com/media/equideo/image/interface/icon/gaia-register.png?25196949' /></a>
<a target='_blank' ref='noopener noreferrer' href='https://www.howrse.com/'><img
src='https://icons.iconarchive.com/icons/icons8/ios7/32/Maps-Globe-icon.png' /></a>
</body>
</html>

0 comments on commit 763a2c5

Please sign in to comment.