Offer Extra

Unofficial OfferUp extension

What is Offer Extra?

Offer Extra is a Chrome extension developed by Ihor Bodnarchuk, and its main feature is "Unofficial OfferUp extension".

Extension Screenshots

screenshot
screenshot
screenshot

Download Offer Extra Extension CRX File

Download Offer Extra extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Offer Extra Offer Extra
ID eklpnlhgjjchopjcadlfpbohdmfhjdnl
Official URL https://chromewebstore.google.com/detail/offer-extra/eklpnlhgjjchopjcadlfpbohdmfhjdnl
Description Unofficial OfferUp extension
File Size 90.53 KB
Installation Count 262
Current Version 2.0.0
Last Updated 2021-02-08
Publish Date 2020-06-12
Rating 3.67/5 Total 3 Ratings
Developer Ihor Bodnarchuk
Email [email protected]
Payment Type free
Extension Website https://codespaceinc.co
Help Page URL https://github.com/ihorbond/offer-extra
Supported Languages 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
}