Steam Store Tooltip
Show Steam games information when hovering the store links.
Что такое Steam Store Tooltip?
Steam Store Tooltip - это расширение Chrome, разработанное Gabriel Schulte, и его основная функция - "Show Steam games information when hovering the store links.".
Снимки экрана расширения
Скачать файл CRX расширения Steam Store Tooltip
Скачайте файлы расширений Steam Store Tooltip в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
⚡️ Quickly see all the relevant game's info in a tooltip: ▫️ price and discount ▫️ screenshots ▫️ categories ▫️ reviews positive rating ▫️ wishlisted or owned game (available if you're logged in on the browser) ▫️ description ▫️ release date ▫️ platforms ▫️ user tags ⚡️ Choose the store language ⚡️ Choose the store currency (available if you're not logged in on the browser) ⚡️ Activate the tooltip with a chosen key ⭐️ Free and open source
Основная информация о расширении
Название | Steam Store Tooltip |
ID | loekhehhklndobiamaakjkefleckboon |
Официальный URL | https://chromewebstore.google.com/detail/steam-store-tooltip/loekhehhklndobiamaakjkefleckboon |
Описание | Show Steam games information when hovering the store links. |
Размер файла | 138 KB |
Количество установок | 34 |
Текущая Версия | 1.2.0 |
Последнее Обновление | 2022-05-24 |
Дата публикации | 2020-01-27 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Gabriel Schulte |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/gabrielmdu/Steam-Store-Tooltip |
URL страницы помощи | https://github.com/gabrielmdu/Steam-Store-Tooltip/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Steam Store Tooltip", "version": "1.2.0", "description": "Show Steam games information when hovering the store links.", "homepage_url": "https:\/\/github.com\/gabrielmdu\/Steam-Store-Tooltip", "permissions": [ "storage", "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "*:\/\/store.steampowered.com\/*" ], "css": [ "font\/fonts.css" ], "js": [ "js\/steamstoretooltip.js" ], "run_at": "document_idle" } ], "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_page": "html\/options.html", "web_accessible_resources": [ { "resources": [ "font\/*.woff" ], "matches": [ "*:\/\/*\/*" ] } ], "manifest_version": 3 } |