Skip to content

Commit

Permalink
v0.3.23: Added demo: mifare-keychain (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
taichunmin authored Nov 13, 2024
2 parents e96fb28 + d69adce commit 630c9a9
Show file tree
Hide file tree
Showing 8 changed files with 787 additions and 50 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"module": "./dist/index.mjs",
"name": "chameleon-ultra.js",
"type": "commonjs",
"version": "0.3.22",
"version": "0.3.23",
"bugs": {
"url": "https://github.com/taichunmin/chameleon-ultra.js/issues"
},
Expand All @@ -20,7 +20,7 @@
}
],
"dependencies": {
"@taichunmin/buffer": "^0.13.9",
"@taichunmin/buffer": "^0.13.10",
"@taichunmin/crc": "^0.0.14",
"debug": "^4.3.7",
"jszip": "^3.10.1",
Expand All @@ -37,7 +37,7 @@
"@types/jest": "^29.5.14",
"@types/livereload": "^0.9.5",
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.7",
"@types/node": "^22.9.0",
"@types/pug": "^2.0.10",
"@types/serve-static": "^1.15.7",
"@types/uglify-js": "^3.17.5",
Expand All @@ -54,7 +54,7 @@
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-n": "^17.13.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-pug": "^1.2.5",
"eslint-plugin-tsdoc": "^0.3.0",
Expand All @@ -75,7 +75,7 @@
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typedoc": "^0.26.11",
"typedoc-plugin-mdn-links": "^3.3.6",
"typedoc-plugin-mdn-links": "^3.3.7",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript": "^5.6.3",
Expand Down
16 changes: 16 additions & 0 deletions pages/demos.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,22 @@ A ChameleonUltra tool for mifare class 1k.

- - -

## [mifare-keychain.html](https://taichunmin.idv.tw/chameleon-ultra.js/mifare-keychain.html)

Keep a few mifare tags in browser with indexedDB.

![](https://i.imgur.com/1Xe3Fgs.png)

<h3>Features</h3>

- Save/Load tags to/from browser's indexedDB.
- Export/Import tags with CSV format.
- Read/Emulate tag with ChameleonUltra slot.
- Scan Anti-Collision data from tag.
- Write block0 to magic tag. (Gen1a, Gen2)

- - -

## [hf14a-scanner.html](https://taichunmin.idv.tw/chameleon-ultra.js/hf14a-scanner.html)

A tool to scan uid of ISO/IEC 14443-A tags.
Expand Down
4 changes: 3 additions & 1 deletion pug/include/bootstrapV4.pug
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ html(lang="zh-Hant")
body
include ./livereload
block content
script(crossorigin="anonymous", src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js")
script(crossorigin="anonymous", src="https://cdn.jsdelivr.net/npm/axios@1/dist/axios.min.js")
script(crossorigin="anonymous", src="https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js")
script(crossorigin="anonymous", src="https://cdn.jsdelivr.net/npm/dexie@4/dist/dexie.min.js")
script(crossorigin="anonymous", src="https://cdn.jsdelivr.net/npm/[email protected]/dist/flexsearch.bundle.min.js")
script(crossorigin="anonymous", src="https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js")
script(crossorigin="anonymous", src="https://cdn.jsdelivr.net/npm/json5@2/dist/index.min.js")
script(crossorigin="anonymous", src="https://cdn.jsdelivr.net/npm/lodash@4/lodash.min.js")
Expand Down
Loading

0 comments on commit 630c9a9

Please sign in to comment.