akizuki-daisuki
秋月電子のサイトを使いやすくするchrome拡張
Vad är akizuki-daisuki?
akizuki-daisuki är en Chrome-tillägg utvecklad av mqce, och dess huvudfunktion är "秋月電子のサイトを使いやすくするchrome拡張".
Tilläggsskärmbilder
Ladda ner akizuki-daisuki-förlängningens CRX-fil
Ladda ner akizuki-daisuki-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
お気に入りを使いやすく - ページ遷移なしで次々とお気に入り/カートに投入できる - お気に入りは消えないので安心! - 商品ページ、一覧ページに「お気に入りに入れる」ボタンが出現 - 商品ページ、一覧ページに「カートに入れる」ボタンが出現 - ヘッダーにお気に入りとカートに入っている商品数を表示 見やすく - ページの横幅を広く(オプション) - 商品ページの写真を大きく(オプション) その他 - 店舗在庫数を表示(オプション) - 主要なページの商品名の全角英数を半角に(オプション) - セッションが切れたら自動リロード オープンソース https://github.com/mqce/akizuki-daisuki
Grundläggande Information om Tillägg
Namn | |
ID | hjdhpmpkbmcckegkppojhmhbgbmnlbgd |
Officiell webbadress | https://chromewebstore.google.com/detail/akizuki-daisuki/hjdhpmpkbmcckegkppojhmhbgbmnlbgd |
Beskrivning | 秋月電子のサイトを使いやすくするchrome拡張 |
Filstorlek | 27.58 KB |
Antal Installationer | 920 |
Aktuell Version | 1.0.2 |
Senast Uppdaterad | 2023-11-08 |
Publiceringsdatum | 2023-03-10 |
Betyg | 4.89/5 Totalt 9 Betyg |
Utvecklare | mqce |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/mqce/akizuki-daisuki |
Stödda Språk | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "\u79cb\u6708\u96fb\u5b50\u306e\u30b5\u30a4\u30c8\u3092\u4f7f\u3044\u3084\u3059\u304f\u3059\u308bchrome\u62e1\u5f35", "version": "1.0.2", "manifest_version": 3, "name": "akizuki-daisuki", "content_scripts": [ { "matches": [ "https:\/\/akizukidenshi.com\/*" ], "js": [ "content.js" ], "css": [ "style.css" ], "run_at": "document_start" } ], "options_page": "options.html", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "img\/*" ], "matches": [ "https:\/\/akizukidenshi.com\/*" ] } ], "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" } } |