Canada Post - Add Tracking Barcode
Adds a barcode to scan on your Canada Post mobile app when viewing the tracking page on the web.
Cos'è Canada Post - Add Tracking Barcode?
Canada Post - Add Tracking Barcode è un'estensione di Chrome sviluppata da https://braunson.ca, e la sua funzione principale è "Adds a barcode to scan on your Canada Post mobile app when viewing the tracking page on the web.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Canada Post - Add Tracking Barcode
Scarica i file di estensione Canada Post - Add Tracking Barcode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Canada Post - Add Tracking Barcode |
ID | nokmdkhphnokepcndpkdojefopjgnacb |
URL Ufficiale | https://chromewebstore.google.com/detail/canada-post-add-tracking/nokmdkhphnokepcndpkdojefopjgnacb |
Descrizione | Adds a barcode to scan on your Canada Post mobile app when viewing the tracking page on the web. |
Dimensione del File | 136 KB |
Conteggio Installazioni | 46 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2023-12-05 |
Data di Pubblicazione | 2019-12-31 |
Sviluppatore | https://braunson.ca |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |