Buy Order Planner

Plan Steam Community Market buy orders

Buy Order Planner란 무엇입니까?

Buy Order Planner은(는) 6matko.ace에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plan Steam Community Market buy orders"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Buy Order Planner 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Buy Order Planner is a simple Chrome extension to plan Steam Community Market (SCM) buy orders and quickly place buy order with your planned settings.

This extension was created to ease the process of buy order creation and give ability to plan buy orders for items that might be listed soon. There was no intention to automate buy order creation process.

Features
- Plan buy order on any SCM listing page (via popup)
- Set price & amount to buy at
- View quick information about active buy orders on SCM listing page (via popup)
- View list of all set planned buy orders. Following features available:
- Filter by item name
- Remove planned buy order
- Quickly open native "Set buy order" modal (via popup)
- Price & amount fields will be automatically filled with your values
- Manually add items from any page (via popup)
- View stats about planned orders
- Quickly open "Set buy order" modal on all open SCM Listing pages via one button click
- Shortcuts to open popup with settings and buy order modal (works only with enabled popup)                    

확장 프로그램 기본 정보

이름 Buy Order Planner Buy Order Planner
ID dgoaaennnmpodfdjdenapiaalbbeabkf
공식 URL https://chromewebstore.google.com/detail/buy-order-planner/dgoaaennnmpodfdjdenapiaalbbeabkf
설명 Plan Steam Community Market buy orders
파일 크기 3.34 MB
설치 횟수 277
현재 버전 1.1.0
최근 업데이트 2022-02-14
출시 날짜 2022-02-06
평점 5.00/5 총 2 개의 평점
개발자 6matko.ace
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/6matko/bo-planner
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Buy Order Planner",
    "short_name": "bo-planner",
    "version": "1.1.0",
    "description": "Plan Steam Community Market buy orders",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "action": {
        "default_popup": "index.html?#\/popup",
        "default_title": "Buy Order Planner"
    },
    "options_page": "index.html?#\/options",
    "content_scripts": [
        {
            "js": [
                "contentPage.js"
            ],
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "boModal.js"
            ],
            "matches": [
                "https:\/\/steamcommunity.com\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+B"
            },
            "description": "Open \"Buy order planner\" extension popup with setup."
        },
        "openBO": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "Open \"Place buy order\" window on the current page."
        }
    }
}