Float From Skin

Displays float values for CS GO skins in the Steam Market. You can check statistics about the public server at…

Float From Skin란 무엇입니까?

Float From Skin은(는) Overhatted에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays float values for CS GO skins in the Steam Market. You can check statistics about the public server at…"입니다.

확장 프로그램 스크린샷

screenshot

Float From Skin 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Displays float values for CS GO skins in the Steam Market.

You can check statistics about the public server at http://floatfromskin.tryrecords.com

Since requests to the Steam network cannot be made directly from your browser and must be made by a steam client you need to use a public server (that runs multiple steam clients) as a proxy. This public server is at floatfromskin.tryrecords.com which is the default server used by the app (You can change which server the app uses in the options).

Steam throttles requests very aggressively so this server can only make one request every 1.4 seconds per steam account. This means we need a lot of steam accounts with a Counter-Strike: Global Offensive copy each. If the server is not responding to your requests fast enough it's probably because there aren't enough steam clients for everybody. You can help fix that and contribute by sending a copy of Counter-Strike: Global Offensive to [email protected]. You can also send skins which I will sell to buy more copies. The public server is currently located in the European Union region (Ireland).                    

확장 프로그램 기본 정보

이름 Float From Skin Float From Skin
ID nlheooelajnkbnpgjojileplpjhkcham
공식 URL https://chrome.google.com/webstore/detail/float-from-skin/nlheooelajnkbnpgjojileplpjhkcham
설명 Displays float values for CS GO skins in the Steam Market. You can check statistics about the public server at…
파일 크기 32.95 KB
설치 횟수 1,000
현재 버전 4
최근 업데이트 2016-09-15
출시 날짜 2016-09-15
평점 2.80/5 총 15 개의 평점
개발자 Overhatted
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://floatfromskin.tryrecords.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Float From Skin",
    "short_name": "Float From Skin",
    "version": "4",
    "icons": {
        "128": "FloatFromSkinIcon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/steamcommunity.com\/market\/*",
                "http:\/\/steamcommunity.com\/market\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_icon": "FloatFromSkinIcon_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}