Steam Web Integration

Integrate your personal Steam information on the web, at your convenience!.

Steam Web Integrationคืออะไร?

Steam Web Integration เป็นส่วนขยายของ Chrome ที่พัฒนาโดย revadike และคุณลักษณะหลักของมันคือ "Integrate your personal Steam information on the web, at your convenience!."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Steam Web Integration

ดาวน์โหลดไฟล์ส่วนขยาย Steam Web Integration ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Features
 - Checks web pages for links or images of steam games or DLC
 - Displays informative icons next to the link or image
 - Shows tooltips with additional information (on icon hover)
 - Information includes:
    - Type (game, DLC or package)
    - Ownership on Steam
    - Wishlisted on Steam
    - Followed on Steam
    - Ignored on Steam
    - Delisted/removed from Steam
    - Limited on Steam (low confidence metric)
    - Steam Trading Cards
    - Game bundle history
 - Caching of data
 - Support for dynamically changing web content
 - Context menu options
 - Highly configurable


FAQ
Why does it not work?
Make sure you are logged in to steam with your account in your web browser. If that does not work, try factory reset.

Why does it still not work?
Try factory reset. Otherwise, be sure to contact me and provide me the log/error from the extension, if there is any.

Can I suggest a feature, or ask a question?
Yes, absolutely! Post it on the GitHub page:
https://github.com/Revadike/SteamWebIntegration/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Steam Web Integration Steam Web Integration
ID bcjlaaocogjkkhbmjhlhonmpnngnlogn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/steam-web-integration/bcjlaaocogjkkhbmjhlhonmpnngnlogn
คำอธิบาย Integrate your personal Steam information on the web, at your convenience!.
ขนาดไฟล์ 375 KB
จำนวนการติดตั้ง 710
เวอร์ชันปัจจุบัน 2.3.0
อัปเดตครั้งล่าสุด 2023-11-01
วันที่เผยแพร่ 2023-02-26
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา revadike
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Revadike/SteamWebIntegration/
URL หน้าช่วยเหลือ https://github.com/Revadike/SteamWebIntegration/issues/
URL หน้านโยบายความเป็นส่วนตัว https://raw.githubusercontent.com/Revadike/SteamWebIntegration/master/PRIVACY.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam Web Integration",
    "description": "Integrate your personal Steam information on the web, at your convenience!.",
    "homepage_url": "https:\/\/github.com\/revadike\/steamwebintegration",
    "version": "2.3.0",
    "author": "Revadike",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_title": "Steam Web Integration",
        "default_icon": "images\/icon256.png"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "css\/content.css",
                "css\/fontawesome.min.css",
                "css\/solid.min.css"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "resources": [
                "webfonts\/fa-solid-900.woff2",
                "webfonts\/fa-solid-900.ttf",
                "css\/content.css",
                "css\/fontawesome.min.css",
                "css\/solid.min.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/store.steampowered.com\/*"
    ]
}