Lichess coord helper
Overlay co-ordinates on each square on lichess.com
Vad är Lichess coord helper?
Lichess coord helper är en Chrome-tillägg utvecklad av darajava, och dess huvudfunktion är "Overlay co-ordinates on each square on lichess.com".
Tilläggsskärmbilder
Ladda ner Lichess coord helper-förlängningens CRX-fil
Ladda ner Lichess coord helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Fill out coordinates on lichess.org to get more familiar with them. Grundläggande Information om Tillägg
| Namn | |
| ID | phjjblkcjghdlejdkcibenepiehehpbj |
| Officiell webbadress | https://chromewebstore.google.com/detail/lichess-coord-helper/phjjblkcjghdlejdkcibenepiehehpbj |
| Beskrivning | Overlay co-ordinates on each square on lichess.com |
| Filstorlek | 100 KB |
| Antal Installationer | 38 |
| Aktuell Version | 1.05 |
| Senast Uppdaterad | 2019-01-22 |
| Publiceringsdatum | 2019-01-22 |
| Betyg | 3.33/5 Totalt 3 Betyg |
| Utvecklare | darajava |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Lichess coord helper",
"short_name": "Lichess coords",
"description": "Overlay co-ordinates on each square on lichess.com",
"version": "1.05",
"author": "Dara Javaherian",
"permissions": [
"*:\/\/*.lichess.org\/*"
],
"background": {
"persistent": true,
"scripts": [
"bg\/background.js"
]
},
"icons": {
"128": "icons\/youtube-128.png"
},
"browser_action": {
"default_icon": "icons\/icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/lichess.org\/*",
"http:\/\/lichess.org\/*"
],
"js": [
"js\/jquery.js",
"js\/inject.js"
],
"css": [
"styles\/styles.css"
]
}
]
} | |