Canada Post - Add Tracking Barcode

Adds a barcode to scan on your Canada Post mobile app when viewing the tracking page on the web.

Canada Post - Add Tracking Barcode란 무엇입니까?

Canada Post - Add Tracking Barcode은(는) https://braunson.ca에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a barcode to scan on your Canada Post mobile app when viewing the tracking page on the web."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Canada Post - Add Tracking Barcode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When viewing Canada Post tracking page, there's no barcode to scan with your mobile app (to track your packages), so this extension generates a barcode on the Canada Post tracking page for you to scan with the Canada Post app!                    

확장 프로그램 기본 정보

이름 Canada Post - Add Tracking Barcode Canada Post - Add Tracking Barcode
ID nokmdkhphnokepcndpkdojefopjgnacb
공식 URL https://chromewebstore.google.com/detail/canada-post-add-tracking/nokmdkhphnokepcndpkdojefopjgnacb
설명 Adds a barcode to scan on your Canada Post mobile app when viewing the tracking page on the web.
파일 크기 136 KB
설치 횟수 46
현재 버전 1.2.1
최근 업데이트 2023-12-05
출시 날짜 2019-12-31
개발자 https://braunson.ca
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Canada Post - Add Tracking Barcode",
    "version": "1.2.1",
    "manifest_version": 3,
    "default_locale": "en",
    "author": "Braunson Yager",
    "description": "Adds a barcode to scan on your Canada Post mobile app when viewing the tracking page on the web.",
    "homepage_url": "https:\/\/geekybeaver.ca\/?ref=capost-barcode",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.canadapost.ca\/track-reperage\/*",
        "*:\/\/*.canadapost.ca\/trackweb\/*",
        "*:\/\/*.canadapost-postescanada.ca\/track-reperage\/*",
        "*:\/\/*.canadapost-postescanada.ca\/trackweb\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.canadapost.ca\/track-reperage\/*",
                "*:\/\/*.canadapost.ca\/trackweb\/*",
                "*:\/\/*.canadapost-postescanada.ca\/track-reperage\/*",
                "*:\/\/*.canadapost-postescanada.ca\/trackweb\/*"
            ],
            "css": [
                "src\/content\/content-style.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.canadapost.ca\/track-reperage\/*",
                "*:\/\/*.canadapost.ca\/trackweb\/*",
                "*:\/\/*.canadapost-postescanada.ca\/track-reperage\/*",
                "*:\/\/*.canadapost-postescanada.ca\/trackweb\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/JsBarcode.code128.min.js",
                "js\/jquery\/jquery.min.js",
                "src\/content\/content-script.js"
            ]
        }
    ]
}