Inspect and view changes in ユニクロ注文履歴検索 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "ユニクロ注文履歴検索",
"version": "1.0.0",
"description": "ユニクロの注文履歴を簡単に検索・管理できる拡張機能です。過去の購入商品を日付、サイズ、色、性別などで絞り込み、購入傾向を分析することができます。商品ページでは過去の購入履歴を確認できるため、リピート購入も簡単です。",
"host_permissions": [
"https://www.uniqlo.com/*"
],
"content_scripts": [
{
"matches": [
"https://www.uniqlo.com/jp/ja/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}