Amazon Country of origin Filter
Filters products based on country of origin!
Amazon Country of origin Filter란 무엇입니까?
Amazon Country of origin Filter은(는) csdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filters products based on country of origin!"입니다.
확장 프로그램 스크린샷
Amazon Country of origin Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Updates: A. Default Configuration: 1. The Plugin is enabled by default. 2. Default Setting: Only Made in India Products are shown with tags. From other countries, the products get removed. B. Added Option to reset settings to default. This is shown as a link below 'Filter' button in the Plugin UI. Description: This plugin will allow you to filter products on Amazon listing & search pages based on country of origin. The country information will be added and if desired, the products not matching the category will be removed from the screen. Motivation: Vocal for Local. 😊. Ps: I don't collect or take any data. All the processing happens in the browser. I request you to contact in my email [email protected] in case you need any 1-1 assistance in using the plugin. Would be happy to help. But Please note that I am a solo developer here so responses might get delayed. Namaste 🙏
확장 프로그램 기본 정보
이름 | Amazon Country of origin Filter |
ID | ckefnkgcodnhjboblidglaplcldaiojj |
공식 URL | https://chromewebstore.google.com/detail/amazon-country-of-origin/ckefnkgcodnhjboblidglaplcldaiojj |
설명 | Filters products based on country of origin! |
파일 크기 | 521 KB |
설치 횟수 | 104 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2024-03-03 |
출시 날짜 | 2023-09-21 |
평점 | 3.00/5 총 8 개의 평점 |
개발자 | csdev |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://praveenranjan.com/portfolio#contact |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Filters products based on country of origin!", "version": "1.0.1", "manifest_version": 3, "name": "Amazon Country of origin Filter", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "icons": { "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.in\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "permissions": [ "storage" ] } |