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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
⚡️ 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 |
عنوان صفحة المساعدة | 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 } |