Offer Extra

Unofficial OfferUp extension

Offer Extra란 무엇입니까?

Offer Extra은(는) Ihor Bodnarchuk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial OfferUp extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Offer Extra 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
}