ollie.fund

ollie powered values.

ollie.fund là gì?

ollie.fund là một tiện ích mở rộng Chrome được phát triển bởi http://ollie.fund, và tính năng chính của nó là "ollie powered values.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ollie.fund

Tải xuống các tệp mở rộng ollie.fund dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        uses values from https://rolimons.com/ and demand data collected from https://ollie.fund/

completely open source @ https://github.com/mxmmxx/extension

- adds a percent gain in the middle of trades
- adds the demand of an item in the top right of its photo
- fixes a few graphical bugs in the roblox trade interface, including making catalog links open in a new tab instead of the current tag

this extension is not affiliated with Roblox Corporation or Rolimon's in any shape or form.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ollie.fund ollie.fund
ID ehbicfoojmomhdlkccmhnlccbpfkocfo
URL Chính Thức https://chrome.google.com/webstore/detail/olliefund/ehbicfoojmomhdlkccmhnlccbpfkocfo
Mô tả ollie powered values.
Kích Thước Tệp 41.49 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-05-17
Ngày Phát Hành 2022-05-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://ollie.fund
Email [email protected]
Trang Web Mở Rộng https://ollie.fund/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ollie.fund",
    "version": "1.0.0",
    "action": {
        "default_icon": {
            "16": "images\/x16.png",
            "24": "images\/x24.png",
            "32": "images\/x32.png",
            "64": "images\/x64.png"
        },
        "default_title": "ollie powered values.",
        "default_popup": "views\/popup.html"
    },
    "description": "ollie powered values.",
    "icons": {
        "16": "images\/x16.png",
        "32": "images\/x32.png",
        "48": "images\/x48.png",
        "128": "images\/x128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/roblox.com\/trades"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.roblox.com\/*"
            ],
            "js": [
                "scripts\/trades.js"
            ],
            "css": [
                "assets\/main.css"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    }
}