Offer Extra

Unofficial OfferUp extension

什么是Offer Extra?

Offer Extra是由Ihor Bodnarchuk开发的Chrome扩展程序,该扩展的主要功能是“Unofficial OfferUp extension”。

扩展截图

screenshot
screenshot
screenshot

下载Offer Extra扩展crx文件

下载Offer Extra扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension improves website experience by allowing to:
- Remove favorites (boards)
- Select and remove individual items within the board
- Search your board by using the original search bar

Tags:
OfferUp, Offer Up, Letgo, Let go, Craigslist                    

扩展基本信息

名称 Offer Extra Offer Extra
ID eklpnlhgjjchopjcadlfpbohdmfhjdnl
官方URL https://chromewebstore.google.com/detail/offer-extra/eklpnlhgjjchopjcadlfpbohdmfhjdnl
简介 Unofficial OfferUp extension
文件大小 90.53 KB
安装次数 262
当前版本 2.0.0
更新时间 2021-02-08
上架时间 2020-06-12
评分 3.67/5 共3次评分
开发者 Ihor Bodnarchuk
电子邮箱 [email protected]
付费类型 free
扩展官网 https://codespaceinc.co
帮助页面URL https://github.com/ihorbond/offer-extra
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Offer Extra",
    "version": "2.0.0",
    "description": "Unofficial OfferUp extension",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "index.html",
        "default_title": "Offer Extra",
        "default_icon": {
            "16": "images\/logo_16x16.png",
            "32": "images\/logo_32x32.png",
            "128": "images\/logo_128x128.png"
        }
    },
    "permissions": [
        "storage",
        "declarativeContent",
        "webNavigation"
    ],
    "icons": {
        "16": "images\/logo_16x16.png",
        "32": "images\/logo_32x32.png",
        "128": "images\/logo_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/offerup.com\/board\/*"
            ],
            "js": [
                "js\/search_script.js",
                "js\/board_item_selector_script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/offerup.com\/boards\/*"
            ],
            "js": [
                "js\/boards_delete_script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/offerup.com\/item\/detail\/*"
            ],
            "js": [
                "js\/car_true_value.js"
            ],
            "css": [
                "css\/bootstrap.min.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.*",
        "js\/*.*"
    ],
    "offline_enabled": false
}