Amazon Smile Redirect
This Extension will automatically redirect you to the corresponding AmazonSmile page from Amazon.com.
Amazon Smile Redirectคืออะไร?
Amazon Smile Redirect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://amazonsmileredirect.com และคุณลักษณะหลักของมันคือ "This Extension will automatically redirect you to the corresponding AmazonSmile page from Amazon.com."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Smile Redirect
ดาวน์โหลดไฟล์ส่วนขยาย Amazon Smile Redirect ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Help your favorite non-profit by purchasing your Amazon items through AmazonSmile. Overview: This Extension will automatically redirect you to the corresponding AmazonSmile page, so you will never need to remember to go to AmazonSmile first. In order for your non-profit to benefit from your purchase, you must complete your purchase through AmazonSmile. Supported Sites: amazon.com amazon.co.uk amazon.de Open Source: The code for this extension is open source and can be viewed on GitHub. https://github.com/webdevnerdstuff/amazon-smile-redirect Legal Information: AmazonSmile and the AmazonSmile logo are trademarks of Amazon.com, Inc. or its affiliates. The extension was not created or endorsed by Amazon. © 2020 Amazon Smile Redirect. All Rights Reserved.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ejglonclnjogoiegggjjcpapffbnangg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/amazon-smile-redirect/ejglonclnjogoiegggjjcpapffbnangg |
คำอธิบาย | This Extension will automatically redirect you to the corresponding AmazonSmile page from Amazon.com. |
ขนาดไฟล์ | 116 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 4.0.0 |
อัปเดตครั้งล่าสุด | 2023-05-13 |
วันที่เผยแพร่ | 2020-06-16 |
คะแนน | 4.62/5 รวมทั้งหมด 60 คะแนน |
ผู้พัฒนา | https://amazonsmileredirect.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://amazonsmileredirect.com |
URL หน้าช่วยเหลือ | https://github.com/webdevnerdstuff/amazon-smile-redirect/issues |
ภาษาที่รองรับ | id,ms,de,en,fil,fr,sw,nl,no,vi,tr,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,hi,th,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Amazon Smile Redirect", "short_name": "ASR", "description": "__MSG_appDesc__", "version": "4.0.0", "author": "__MSG_appAuthor", "homepage_url": "https:\/\/github.com\/webdevnerdstuff\/amazon-smile-redirect", "icons": { "16": "assets\/images\/icon16.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "assets\/js\/background.min.js" }, "host_permissions": [ "*:\/\/www.amazon.com\/*", "*:\/\/www.amazon.co.uk\/*", "*:\/\/www.amazon.de\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.amazon.com\/*", "*:\/\/www.amazon.co.uk\/*", "*:\/\/www.amazon.de\/*" ], "exclude_globs": [ "*business\/register*", "*ab_reg_biss_desktop*", "*amzn_business_inv_website*", "*b2b_reg_email_newcustomer*", "*watchparty*" ], "js": [ "assets\/js\/content.min.js" ], "run_at": "document_idle" } ], "action": { "default_icon": { "16": "assets\/images\/icon16.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" }, "default_popup": "pages\/popup.html" }, "default_locale": "en" } |