FireCws は、Chrome用に書かれた拡張機能(.crx)をFirefox用拡張機能(.xpi)にコンパイルするライブラリです。
Firefoxの欠点として、世界最大のブラウザ拡張機能プラットフォームである、Chrome Web Storeが使えない点がありました。それを解決します。
npm i firecws #npm
yarn add firecws #yarn
pnpm add firecws #pnpm
bun add firecws #bun
import * as firecws from 'firecws' // Node/Bun
import * as firecws from 'npm:firecws' // Deno
import * as firecws from 'jsr:@ns/firecws' // JSR(wip)
.crx拡張をChrome Web Storeから読み込み:
const extensionId = 'ophjlpahpchlmihnnnihgmmeilfjmjjc' // LINE
const crxExt = await firecws.fromWebStore(extensionId)
xpiにコンパイル:
const { xpi } = await firecws.compile(crxExt, {
// Options
}, progres => {
// 進捗のハンドラー
})
xpi // xpiのUint8Array
- 💯 - 完全に動作することが証明済み
- ✅ - 不自然な点なし
- ⭕ - 不自然な点があるが、大体の機能は使える
- 🤔 - エラーがでたりして、完全に機能が使えない。不便。
- ❌ - インストールができない
名前 | チェック時拡張機能バージョン | チェック時FireCwsバージョン | Status |
---|---|---|---|
LINE | 3.1.2 | 0.2.0 | 🤔 |
コンパイル構造が肥大化していて、かなりコンパイルが遅いです。
- @EdamAme-x
- LINE が origin を判定している事実とその解決策のアドバイス
特にファイルに明記してない限り、MIT LICENSEとします。
CONTRIBUTING.mdを読んでみてください