Chase Amazon Search
Adds a link to Chase.com transaction details page to search Amazon for the order number.
Vad är Chase Amazon Search?
Chase Amazon Search är en Chrome-tillägg utvecklad av Dustin Davis, och dess huvudfunktion är "Adds a link to Chase.com transaction details page to search Amazon for the order number.".
Tilläggsskärmbilder
Ladda ner Chase Amazon Search-förlängningens CRX-fil
Ladda ner Chase Amazon Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
When you drill down to transaction from your Chase Amazon card, you can see your Amazon order number. This extension simply adds a link next to that order number to open a new window and search your Amazon account for that order number. This makes it much easier to update your budget when you have a lot of Amazon purchases to sort through.
Grundläggande Information om Tillägg
Namn | |
ID | iiaekebldphlpkgjhafcgfeocmgidmpj |
Officiell webbadress | https://chromewebstore.google.com/detail/chase-amazon-search/iiaekebldphlpkgjhafcgfeocmgidmpj |
Beskrivning | Adds a link to Chase.com transaction details page to search Amazon for the order number. |
Filstorlek | 27.24 KB |
Antal Installationer | 38 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2023-01-04 |
Publiceringsdatum | 2020-08-20 |
Utvecklare | Dustin Davis |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chase Amazon Search", "version": "1.0.0", "manifest_version": 2, "description": "Adds a link to Chase.com transaction details page to search Amazon for the order number.", "homepage_url": "https:\/\/github.com\/djedi\/chase-amazon", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "permissions": [ "https:\/\/*.chase.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.chase.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |