Buy Order Planner

Plan Steam Community Market buy orders

Buy Order Plannerคืออะไร?

Buy Order Planner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 6matko.ace และคุณลักษณะหลักของมันคือ "Plan Steam Community Market buy orders"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Buy Order Planner

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

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

                        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."
        }
    }
}