Condler
Amazonで商品を探しやすくします。
Wat is Condler?
Condler is een Chrome-extensie ontwikkeld door Nunawa, en de belangrijkste functie is "Amazonで商品を探しやすくします。".
Extensie Screenshots
Download het CRX-bestand van de extensie Condler
Download Condler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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]まで)
Basisinformatie over de Extensie
Naam | Condler |
ID | ejjdbndmmongojeafjlilnchmkppbeap |
Officiële URL | https://chromewebstore.google.com/detail/condler/ejjdbndmmongojeafjlilnchmkppbeap |
Beschrijving | Amazonで商品を探しやすくします。 |
Bestandsgrootte | 117 KB |
Aantal Installaties | 2,832 |
Huidige Versie | 1.2.2 |
Laatst Bijgewerkt | 2022-07-12 |
Publicatiedatum | 2021-05-27 |
Beoordeling | 4.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Nunawa |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/nunawa/condler |
Ondersteunde Talen | 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" ] } |