Chase Amazon Search
Adds a link to Chase.com transaction details page to search Amazon for the order number.
什么是Chase Amazon Search?
Chase Amazon Search是由Dustin Davis开发的Chrome扩展程序,该扩展的主要功能是“Adds a link to Chase.com transaction details page to search Amazon for the order number.”。
扩展截图
下载Chase Amazon Search扩展crx文件
下载Chase Amazon Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | iiaekebldphlpkgjhafcgfeocmgidmpj |
官方URL | https://chromewebstore.google.com/detail/chase-amazon-search/iiaekebldphlpkgjhafcgfeocmgidmpj |
简介 | Adds a link to Chase.com transaction details page to search Amazon for the order number. |
文件大小 | 27.24 KB |
安装次数 | 38 |
当前版本 | 1.0.0 |
更新时间 | 2023-01-04 |
上架时间 | 2020-08-20 |
开发者 | Dustin Davis |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } ] } |