British Airways Avios Collection Reminder

A Chrome browser plugin that will remind BA customers which retailers they can collect Avios points with.

British Airways Avios Collection Reminder란 무엇입니까?

British Airways Avios Collection Reminder은(는) https://shopping.ba.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome browser plugin that will remind BA customers which retailers they can collect Avios points with."입니다.

확장 프로그램 스크린샷

screenshot

British Airways Avios Collection Reminder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Never miss out on collecting Avios through eStore again with the British Airways Avios Collection Reminder. Over 200 of our most popular brands are included. 

Add the reminder to your browser to: 

* See where you can collect Avios online when you search for products or brands. 

* Find out the current Avios collection rate for a brand. 

* Shop without having to go to eStore every time. 

Remember purchase conditions may appply for some brands, always check the merchant page on eStore. By using the Collection Reminder you are agreeing to the normal eStore terms and conditions.                    

확장 프로그램 기본 정보

이름 British Airways Avios Collection Reminder British Airways Avios Collection Reminder
ID hbhpmkcbobfmndllbcllnooeaghkdoka
공식 URL https://chromewebstore.google.com/detail/british-airways-avios-col/hbhpmkcbobfmndllbcllnooeaghkdoka
설명 A Chrome browser plugin that will remind BA customers which retailers they can collect Avios points with.
파일 크기 230 KB
설치 횟수 8,373
현재 버전 2.0.0
최근 업데이트 2023-08-24
출시 날짜 2020-06-07
평점 2.63/5 총 16 개의 평점
개발자 https://shopping.ba.com
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://shopping.ba.com/collection-reminder
개인정보 보호 정책 페이지 URL https://www.shopping.ba.com/privacy
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.0.0",
    "short_name": "BA Collection Reminder",
    "name": "British Airways Avios Collection Reminder",
    "description": "A Chrome browser plugin that will remind BA customers which retailers they can collect Avios points with.",
    "incognito": "split",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.google.com\/search*",
                "https:\/\/*.google.co.uk\/search*"
            ],
            "js": [
                "content.js",
                "static\/js\/inject.js",
                "static\/js\/vendor.js"
            ],
            "css": [
                "static\/css\/inject.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "permissions": [
        "tabs",
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.shopping.ba.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "static\/js\/inject.js",
                "static\/js\/vendor.js",
                "static\/css\/inject.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}