Condler
Amazonで商品を探しやすくします。
What is Condler?
Condler is a Chrome extension developed by Nunawa, and its main feature is "Amazonで商品を探しやすくします。".
Extension Screenshots
Download Condler Extension CRX File
Download Condler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Amazonの商品検索結果のページに、新たな絞り込み項目を追加します。 Firefox版:https://addons.mozilla.org/ja/firefox/addon/condler/ 寄付をしていただける方は以下のリンクからお願いします。 Buy Me a Coffee:https://www.buymeacoffee.com/nunawa Amazonギフト券 Eメールタイプ:https://www.amazon.co.jp/dp/B004N3APGO ([email protected]まで)
Extension Basic Information
Name | Condler |
ID | ejjdbndmmongojeafjlilnchmkppbeap |
Official URL | https://chromewebstore.google.com/detail/condler/ejjdbndmmongojeafjlilnchmkppbeap |
Description | Amazonで商品を探しやすくします。 |
File Size | 117 KB |
Installation Count | 2,832 |
Current Version | 1.2.2 |
Last Updated | 2022-07-12 |
Publish Date | 2021-05-27 |
Rating | 4.00/5 Total 3 Ratings |
Developer | Nunawa |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/nunawa/condler |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Condler", "version": "1.2.2", "description": "Amazon\u3067\u5546\u54c1\u3092\u63a2\u3057\u3084\u3059\u304f\u3057\u307e\u3059\u3002", "icons": { "48": "icons\/icon-48.png", "96": "icons\/icon-96.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.co.jp\/*" ], "js": [ "lib\/browser-polyfill.js", "lib\/jquery-3.5.1.min.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "*:\/\/*.amazon.co.jp\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "scripts": [ "lib\/browser-polyfill.js", "lib\/jquery-3.5.1.min.js", "background.js" ] }, "web_accessible_resources": [ "search-options-dom.html" ], "options_ui": { "page": "options\/options.html", "browser_style": true }, "permissions": [ "storage" ] } |