-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add small icons (ouranos, gaia, howrse) in popup window
- Loading branch information
Showing
4 changed files
with
43 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |