CigarBid Free Fall Plugin

Monitors the lowest price seen for a given free fall auction.

CigarBid Free Fall Plugin란 무엇입니까?

CigarBid Free Fall Plugin은(는) https://www.cigarnubs.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Monitors the lowest price seen for a given free fall auction."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

CigarBid Free Fall Plugin 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This plugin monitors a Free Fall Auction on Cigarbid.com and keeps track of the lowest price it has seen.  The lowest price information will last as long as the browser window is open and will reset if the auction is refreshed.

New in version 1.2.1:
Bug fixes

New in version 1.2:
Fixed notifications and made it harder for CigarBid to block this plugin from working in the future.

New in version 1.1.3:
- Bug fixes

New in version 1.1.2:
- Bug fixes

New in version 1.1.1:
- Bug fixes

New in version 1.1.0:
- Notifications.  Whenever a free fall auction price resets and a new low price has been reached, a notification will display alerting you to the auction and the new low price.
- Options page that allows you to toggle notifications on and set notification timeout.                    

확장 프로그램 기본 정보

이름 CigarBid Free Fall Plugin CigarBid Free Fall Plugin
ID haggdgmfhabhnmfmcmodogfmehljdoco
공식 URL https://chromewebstore.google.com/detail/cigarbid-free-fall-plugin/haggdgmfhabhnmfmcmodogfmehljdoco
설명 Monitors the lowest price seen for a given free fall auction.
파일 크기 52.33 KB
설치 횟수 626
현재 버전 1.2.1
최근 업데이트 2016-03-08
출시 날짜 2016-03-08
평점 4.07/5 총 14 개의 평점
개발자 https://www.cigarnubs.com
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CigarBid Free Fall Plugin",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Monitors the lowest price seen for a given free fall auction.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "notifications",
        "tabs"
    ],
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "icons\/icon48.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.cigarbid.com\/*",
                "http:\/\/cigarbid.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/domChangePlugin.js",
                "js\/freeFall.js",
                "js\/options.js"
            ]
        }
    ]
}