diff --git a/.github/workflows/syncCommunityResources.yml b/.github/workflows/syncCommunityResources.yml new file mode 100644 index 000000000..31ec21aab --- /dev/null +++ b/.github/workflows/syncCommunityResources.yml @@ -0,0 +1,50 @@ +name: 'Sync Community Resources' + +on: + schedule: + # weekly on Mondays at 00:00 UTC + - cron: '0 0 * * 1' + workflow_dispatch: + +jobs: + sync-community-resources: + name: Sync Community Resources + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - uses: pnpm/action-setup@v4 + + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - run: pnpm i + + - name: sync-community-resources + run: pnpm build:community-resources + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - run: pnpm prettier src/data -w + + # tauri-docs PR + - name: Git config + run: | + git config --global user.name "tauri-bot" + git config --global user.email "tauri-bot@tauri.app" + + - name: Create pull request for updated docs + id: cpr + # soft fork of https://github.com/peter-evans/create-pull-request for security purposes + uses: tauri-apps/create-pull-request@v3.4.1 + if: github.event_name != 'pull_request' && github.event_name != 'push' + with: + token: ${{ secrets.ORG_TAURI_BOT_PAT }} + commit-message: 'chore(docs): Update Community Resources' + branch: ci/v2/update-community-resources + title: Update Community Resources + labels: 'bot' diff --git a/package.json b/package.json index 0303dde0c..711a074b2 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "dev": "astro dev", "format": "prettier -w --cache --plugin prettier-plugin-astro .", "format:check": "prettier -c --cache --plugin prettier-plugin-astro .", + "build:community-resources": "pnpm --filter community-resources run build", "build:compatibility-table": "pnpm --filter compatibility-table run build", "build:references": "pnpm --filter js-api-generator run build", "build:releases": "pnpm --filter releases-generator run build", diff --git a/packages/community-resources/.prettierrc b/packages/community-resources/.prettierrc new file mode 100644 index 000000000..3ea048482 --- /dev/null +++ b/packages/community-resources/.prettierrc @@ -0,0 +1,22 @@ +{ + "printWidth": 100, + "semi": true, + "singleQuote": true, + "tabWidth": 2, + "trailingComma": "es5", + "useTabs": false, + "overrides": [ + { + "files": ["*.json", "*.md", "*.toml", "*.yml"], + "options": { + "useTabs": false + } + }, + { + "files": ["*.md", "*.mdx"], + "options": { + "printWidth": 80 + } + } + ] +} diff --git a/packages/community-resources/build.ts b/packages/community-resources/build.ts new file mode 100644 index 000000000..c13c23d1c --- /dev/null +++ b/packages/community-resources/build.ts @@ -0,0 +1,218 @@ +import fs from 'fs/promises'; +import path from 'path'; +import { fileURLToPath } from 'url'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const OUTPUT_FILE = path.resolve(__dirname, '../../src/data/communityResources.json'); + +const GITHUB_TOKEN = process.env.GITHUB_TOKEN || null; +const query = 'tauri-plugin-'; +const npmBaseUrl = 'https://registry.npmjs.org'; +const cratesBaseUrl = 'https://crates.io/'; +const githubBaseUrl = 'https://api.github.com/repos'; + +const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); + +function cleanRepoUrl(url: string) { + if (!url) { + return null; + } + // hmm + return url.replace(/^git\+/, '').replace(/\.git$/, ''); +} + +async function fetchJson(url: string, headers?: Headers) { + if (!headers) { + headers = new Headers(); + } + if (!headers.has('User-Agent')) { + headers.set( + 'User-Agent', + 'tauri-docs-plugins-discover (https://github.com/tauri-apps/tauri-docs - @vasfvitor)' + ); + } + + const res = await fetch(url, { headers }); + if (!res.ok) { + throw new Error(`Failed ${url}: ${res.status} ${res.statusText}`); + } + return res.json(); +} + +async function fetchCrates() { + const results = []; + let page = 1; + const per_page = 100; + while (true) { + const url = `https://crates.io/api/v1/crates?page=${page}&per_page=${per_page}&q=${query}`; + const j = await fetchJson(url); + if (!j.crates || j.crates.length === 0) { + break; + } + for (const c of j.crates) { + if (!c.name || !c.name.startsWith(query)) { + continue; + } + results.push({ + source: 'crates', + name: c.name, + description: c.description || '', + version: c.max_version || c.newest_version || '', + downloads: c.downloads || 0, + repository: cleanRepoUrl(c.repository || c.homepage || ''), + license: c.license || '', + homepage: c.homepage || '', + crates_io: `https://crates.io/crates/${c.name}`, + }); + } + if (j.meta && j.meta.total <= page * per_page) break; + page++; + await sleep(1001); + } + return results; +} + +interface ResultsItem { + source: string; + name: string; + description: string; + version: string; + version_npm?: string; + date?: string; + repository: string | null; + npm?: string; + crates_io?: string; + downloads?: number; + github_stars?: number | null; +} + +async function fetchNpm() { + const results: ResultsItem[] = []; + const size = 250; + const url = `https://registry.npmjs.org/-/v1/search?text=tauri-plugin-&size=${size}`; + const j = await fetchJson(url); + if (!j.objects) return results; + for (const obj of j.objects) { + const p = obj.package; + const name = p.name; + if (!name) { + continue; + } + if (!/(^|\/)tauri-plugin-/.test(name)) { + continue; + } + const repo = p.links && p.links.repository ? p.links.repository : p.repository; + results.push({ + source: 'npm', + name, + description: p.description || '', + version: p.version || '', + date: p.date || '', + repository: cleanRepoUrl(repo || p.links?.homepage || ''), + npm: `https://www.npmjs.com/package/${encodeURIComponent(name)}`, + }); + } + return results; +} + +function extractGithubRepo(url: string) { + if (!url) { + return null; + } + try { + const u = new URL(url); + if (u.hostname !== 'github.com') { + return null; + } + const parts = u.pathname.replace(/^\//, '').split('/'); + if (parts.length < 2) { + return null; + } + return `${parts[0]}/${parts[1]}`; + } catch (e) { + return null; + } +} + +async function fetchGithubStars(ownerRepo: string) { + if (!ownerRepo) { + return null; + } + const url = `https://api.github.com/repos/${ownerRepo}`; + const headers = new Headers(); + headers.append('Accept', 'application/vnd.github+json'); + if (GITHUB_TOKEN) { + headers.append('Authorization', `token ${GITHUB_TOKEN}`); + } + try { + const j = await fetchJson(url, headers); + return j.stargazers_count ?? null; + } catch (e) { + return null; + } +} + +async function run() { + console.log('Fetching crates.io packages...'); + const crates = await fetchCrates(); + console.log(`Found ${crates.length} crates matching prefix.`); + + console.log('Fetching npm packages...'); + const npm = await fetchNpm(); + console.log(`Found ${npm.length} npm packages matching prefix.`); + + const map = new Map(); + + for (const c of crates) { + map.set(c.name, { ...c }); + } + for (const n of npm) { + const existing = map.get(n.name); + if (existing) { + existing.npm = n.npm; + existing.version_npm = n.version; + existing.description = existing.description || n.description; + existing.repository = existing.repository || n.repository; + } else { + map.set(n.name, { ...n }); + } + } + + // TODO: fetch GitHub stars + let count = 0; + for (const [name, item] of map) { + const ownerRepo = extractGithubRepo(item.repository); + if (ownerRepo) { + // eslint-disable-next-line no-await-in-loop + item.github_stars = await fetchGithubStars(ownerRepo); + count++; + // Rate limit for GitHub API (especially without token): ~60 req/hour unauthenticated + // Add small delay to avoid hitting rate limits + if (!GITHUB_TOKEN && count % 10 === 0) { + // eslint-disable-next-line no-await-in-loop + await sleep(1000); + } + } else { + item.github_stars = null; + } + } + + const items = Array.from(map.values()).sort( + (a, b) => (b.github_stars || 0) - (a.github_stars || 0) + ); + + const outputData = { + generated: new Date().toISOString(), + count: items.length, + resources: items, + }; + + await fs.mkdir(path.dirname(OUTPUT_FILE), { recursive: true }); + await fs.writeFile(OUTPUT_FILE, JSON.stringify(outputData, null, 2), 'utf8'); + console.log(`Wrote ${items.length} resources to ${OUTPUT_FILE}`); +} + +run().catch((e) => { + console.error('Error generating resources:', e); + process.exit(1); +}); diff --git a/packages/community-resources/package.json b/packages/community-resources/package.json new file mode 100644 index 000000000..d6313f370 --- /dev/null +++ b/packages/community-resources/package.json @@ -0,0 +1,19 @@ +{ + "name": "community-resources", + "version": "1.0.0", + "private": "true", + "description": "", + "main": "index.js", + "type": "module", + "scripts": { + "build": "tsm ./build.ts" + }, + "keywords": [], + "author": "", + "license": "MIT", + "dependencies": { + "@types/node": "^22.0.0", + "tsm": "^2.3.0", + "typescript": "^5.3.3" + } +} diff --git a/packages/community-resources/tsconfig.json b/packages/community-resources/tsconfig.json new file mode 100644 index 000000000..f5108b417 --- /dev/null +++ b/packages/community-resources/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "module": "nodenext", + "moduleResolution": "nodenext", + "strict": true, + "allowImportingTsExtensions": true, + "noEmit": true, + "skipLibCheck": true + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0e7ff95d6..66a0fbbf3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -87,6 +87,18 @@ importers: specifier: ^5.3.3 version: 5.9.3 + packages/community-resources: + dependencies: + '@types/node': + specifier: ^22.0.0 + version: 22.15.21 + tsm: + specifier: ^2.3.0 + version: 2.3.0 + typescript: + specifier: ^5.3.3 + version: 5.9.3 + packages/compatibility-table: dependencies: '@iarna/toml': diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e700754da..68f400582 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -6,6 +6,7 @@ packages: - packages/releases-generator - packages/compatibility-table - packages/fetch-sponsors + - packages/community-resources onlyBuiltDependencies: - '@parcel/watcher' - esbuild diff --git a/src/components/CommunityResources.astro b/src/components/CommunityResources.astro new file mode 100644 index 000000000..060cbeda2 --- /dev/null +++ b/src/components/CommunityResources.astro @@ -0,0 +1,372 @@ +--- +import communityResourcesData from '../data/communityResources.json'; + +const { resources, count, generated } = communityResourcesData; +--- + + +
+ +
+ + +
+
+ Showing {count} of {count} community plugins +
+
+ +
+ + + + + + + + + + + + + { + resources.map((item) => ( + + + + + + + + + )) + } + +
Name & LinksDescriptionCrate VersionCrate DownloadsNPM VersionGitHub Stars
+ + {item.description}{item.version || '-'}{item.downloads ? item.downloads.toLocaleString() : '-'}{item.version_npm || '-'}{item.github_stars ?? '-'}
+
+ +
+ + + + diff --git a/src/content/docs/plugin/index-external-resources.mdx b/src/content/docs/plugin/index-external-resources.mdx new file mode 100644 index 000000000..e5b9f0aec --- /dev/null +++ b/src/content/docs/plugin/index-external-resources.mdx @@ -0,0 +1,12 @@ +--- +title: Community Plugins +i18nReady: true +sidebar: + label: Overview +tableOfContents: false +template: splash +--- + +import CommunityResources from '@components/CommunityResources.astro'; + + diff --git a/src/content/docs/plugin/index.mdx b/src/content/docs/plugin/index.mdx index 3a3508522..11561e82b 100644 --- a/src/content/docs/plugin/index.mdx +++ b/src/content/docs/plugin/index.mdx @@ -12,6 +12,7 @@ import CommunityList from '@components/list/Community.astro'; import Search from '@components/CardGridSearch.astro'; import AwesomeTauri from '@components/AwesomeTauri.astro'; import TableCompatibility from '@components/plugins/TableCompatibility.astro'; +import CommunityResources from '@components/CommunityResources.astro'; import { platformOptions } from 'src/types'; import { platformFilters } from 'src/api/search.ts'; @@ -21,6 +22,8 @@ Tauri comes with extensibility in mind. On this page you'll find: - **[Community Resources](#community-plugins)**: More plugins and recipes built by the Tauri community. You can also contribute your own on [Awesome Tauri](https://github.com/tauri-apps/awesome-tauri) - **[Support Table](#support-table)**: A compatibility table showing which platforms are supported by each official plugin +Also we have a dedicated page for listing discovered community tauri-plugin-* [Crates and NPM packages](/plugin/index-external-resources/) +
**Use the search and filter functionality to find features or community resources:** @@ -34,6 +37,8 @@ Tauri comes with extensibility in mind. On this page you'll find: + + ## Support Table Hover "\*" to see notes. For more details visit the plugin page diff --git a/src/data/communityResources.json b/src/data/communityResources.json new file mode 100644 index 000000000..a4b22e5a0 --- /dev/null +++ b/src/data/communityResources.json @@ -0,0 +1,3984 @@ +{ + "generated": "2025-12-09T16:28:34.756Z", + "count": 346, + "resources": [ + { + "source": "crates", + "name": "tauri-plugin-pty", + "description": "Pseudo Terminal (PTY) plugin for Tauri", + "version": "0.1.1", + "downloads": 14894, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-pty", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-manatsu", + "description": "Manatsu plugin for Tauri", + "version": "0.0.0", + "downloads": 185446, + "repository": "https://github.com/ferreira-tb/manatsu", + "license": "", + "homepage": "https://github.com/ferreira-tb/manatsu", + "crates_io": "https://crates.io/crates/tauri-plugin-manatsu", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-axum", + "description": "A Tauri plugin that allows calling Axum Router endpoints directly.", + "version": "0.7.1", + "downloads": 2984, + "repository": "https://github.com/mcitem/tauri-plugin-axum", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-axum", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-graphql", + "description": "A plugin for Tauri that enables type-safe IPC through GraphQL.", + "version": "2.1.0", + "downloads": 12264, + "repository": "https://github.com/JonasKruckenberg/tauri-plugin-graphql", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-graphql", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sharetarget", + "description": "tauri apps: receive share intents on Android", + "version": "0.1.6", + "downloads": 4722, + "repository": "https://gitlab.com/lafleurdeboum/tauri-plugin-sharetarget", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sharetarget", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-macos-permissions", + "description": "Support for checking and requesting macos system permissions.", + "version": "2.3.0", + "downloads": 39502, + "repository": "https://github.com/ayangweb/tauri-plugin-macos-permissions", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-macos-permissions", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-polodb", + "description": "A Tauri plugin to expose the PoloDB embedded database to applications", + "version": "0.1.0", + "downloads": 1204, + "repository": "https://github.com/dax-dot-gay/tauri-plugin-polodb", + "license": "", + "homepage": "https://github.com/dax-dot-gay/tauri-plugin-polodb", + "crates_io": "https://crates.io/crates/tauri-plugin-polodb", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-cors-fetch", + "description": "Enabling Cross-Origin Resource Sharing (CORS) for Fetch Requests within Tauri applications.", + "version": "4.1.0", + "downloads": 20923, + "repository": "https://github.com/idootop/tauri-plugin-cors-fetch", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-cors-fetch", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-fs-pro", + "description": "Extended with additional methods for files and directories.", + "version": "2.4.0", + "downloads": 15293, + "repository": "https://github.com/ayangweb/tauri-plugin-fs-pro", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-fs-pro", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-locale", + "description": "get the locale of the system.", + "version": "2.0.1", + "downloads": 5938, + "repository": "https://github.com/ayangweb/tauri-plugin-locale", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-locale", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mic-recorder", + "description": "Supports recording audio using a microphone and saving the recorded data as a file.", + "version": "2.0.0", + "downloads": 1324, + "repository": "https://github.com/ayangweb/tauri-plugin-mic-recorder", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-mic-recorder", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-midi", + "description": "A WebMIDI-compatible plugin for Tauri", + "version": "0.1.5", + "downloads": 5405, + "repository": "https://github.com/specta-rs/tauri-plugin-midi", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-midi", + "npm": "https://www.npmjs.com/package/tauri-plugin-midi", + "version_npm": "0.0.0", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-penetrable", + "description": "Using the win32api to achieve click-through of the tauri main window", + "version": "0.1.4", + "downloads": 5398, + "repository": "https://github.com/sner21/tauri-plugin-penetrable", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-penetrable", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-screenshots", + "description": "Get screenshots of windows and monitors.", + "version": "2.2.0", + "downloads": 7910, + "repository": "https://github.com/ayangweb/tauri-plugin-screenshots", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-screenshots", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-trafficlights-positioner", + "description": "A Tauri v1 plugin to help setting the position of the window traffic lights on macOS.", + "version": "1.0.0", + "downloads": 1394, + "repository": "https://github.com/itseeleeya/tauri-plugin-trafficlights-positioner/", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-trafficlights-positioner", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-windows-version", + "description": "Get the version number of the current Windows OS.", + "version": "2.0.0", + "downloads": 2938, + "repository": "https://github.com/ayangweb/tauri-plugin-windows-version", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-windows-version", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-screen-lock-status", + "description": "This plugin helps track the lock status for the current session", + "version": "0.1.2", + "downloads": 2682, + "repository": "https://github.com/ren40/tauri-plugin-screen-lock-status", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-screen-lock-status", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-app-control", + "description": "A Tauri plugin for Android application lifecycle control (minimize, close, exit, state).", + "version": "0.1.1", + "downloads": 985, + "repository": "https://github.com/your-username/tauri-plugin-app-control", + "license": "", + "homepage": "https://github.com/your-username/tauri-plugin-app-control", + "crates_io": "https://crates.io/crates/tauri-plugin-app-control", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-rusqlite2", + "description": "Tauri SQLite plugin using rusqlite", + "version": "2.2.5", + "downloads": 1289, + "repository": "https://github.com/razein97/tauri-plugin-rusqlite2", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-rusqlite2", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mcp-bridge", + "description": "MCP Bridge plugin for Tauri - enables IPC monitoring and backend inspection", + "version": "0.4.0", + "downloads": 168, + "repository": "https://github.com/hypothesi/mcp-server-tauri", + "license": "", + "homepage": "https://github.com/hypothesi/mcp-server-tauri", + "crates_io": "https://crates.io/crates/tauri-plugin-mcp-bridge", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-persistence", + "description": "A wrapper plugin for several persistence backends, focused on managing complex project folders with less boilerplate.", + "version": "0.2.1", + "downloads": 2269, + "repository": "https://github.com/dax-dot-gay/tauri-plugin-persistence", + "license": "", + "homepage": "https://github.com/dax-dot-gay/tauri-plugin-persistence", + "crates_io": "https://crates.io/crates/tauri-plugin-persistence", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-clipboard-x", + "description": "Supports clipboard change listening and enables reading and writing of various clipboard formats (plain text, rich text, html, image, and files).", + "version": "2.0.1", + "downloads": 1498, + "repository": "https://github.com/ayangweb/tauri-plugin-clipboard-x", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-clipboard-x", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-system-fonts", + "description": "Support getting all fonts installed on your system.", + "version": "2.0.2", + "downloads": 533, + "repository": "https://github.com/ayangweb/tauri-plugin-system-fonts", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-system-fonts", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mcp", + "description": "A Tauri plugin for interacting with MCP servers", + "version": "0.8.0-alpha.4", + "downloads": 5355, + "repository": "https://github.com/moeru-ai/airi", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-mcp", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-accept-cookie", + "description": "A Tauri plugin for accept cookie in android.", + "version": "1.0.0", + "downloads": 1219, + "repository": "https://github.com/Cinea4678/tauri-plugin-accept-cookie", + "license": "", + "homepage": "https://github.com/Cinea4678/tauri-plugin-accept-cookie", + "crates_io": "https://crates.io/crates/tauri-plugin-accept-cookie", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-admob", + "description": "Tauri Plugin admob", + "version": "0.0.4", + "downloads": 788, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-admob", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-advanced-file-manager", + "description": "Advanced file manager plugin combining fs, dialog, and opener functionality for desktop platforms", + "version": "0.1.5", + "downloads": 63, + "repository": "https://github.com/1600822305/tauri-plugin-advanced-file-manager", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-advanced-file-manager", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-android-fix-font-size", + "description": "Fix font size on Tauri app for Android.", + "version": "1.0.2", + "downloads": 2034, + "repository": "https://github.com/aiueo13/tauri-plugin-android-fix-font-size", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-android-fix-font-size", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-android-fs", + "description": "Android file system API for Tauri.", + "version": "23.0.1", + "downloads": 42294, + "repository": "https://github.com/aiueo13/tauri-plugin-android-fs", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-android-fs", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-android-package-install", + "description": "This plugin mainly provides package install on android devices.", + "version": "2.0.2", + "downloads": 1786, + "repository": "https://github.com/kingsword09/tauri-plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-android-package-install", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-android-prevent-screen-capture", + "description": "Prevent screen capture on Tauri app for Android.", + "version": "1.0.1", + "downloads": 1385, + "repository": "https://github.com/aiueo13/tauri-plugin-android-prevent-screen-capture", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-android-prevent-screen-capture", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-android-tv-check", + "description": "A Tauri plugin for checking Android TV devices.", + "version": "1.1.1", + "downloads": 739, + "repository": "https://github.com/smbcloudXYZ/tauri-plugin-android-tv-check", + "license": "", + "homepage": "https://github.com/smbcloudXYZ/tauri-plugin-android-tv-check", + "crates_io": "https://crates.io/crates/tauri-plugin-android-tv-check", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-app", + "description": "APIs to read application metadata and change app visibility on macOS.", + "version": "2.0.0-alpha.2", + "downloads": 12094, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-app", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-app-events", + "description": "A plugin for tauri@v2 to listen some events on iOS and Android.", + "version": "0.2.0", + "downloads": 2350, + "repository": "https://github.com/wtto00/tauri-plugin-app-events", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-app-events", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-app-exit", + "description": "A plugin for tauri@v2 to exit app.", + "version": "0.1.1", + "downloads": 1977, + "repository": "https://github.com/wtto00/tauri-plugin-app-exit", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-app-exit", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-appearance", + "description": "Dynamically change Tauri App theme", + "version": "0.5.0", + "downloads": 2320, + "repository": "https://github.com/kuyoonjo/tauri-plugin-theme", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-appearance", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-apple-camera", + "description": "Plugin for tauri to handle camera in the apple devices", + "version": "0.1.0", + "downloads": 516, + "repository": "https://github.com/Grano22/tauri-plugin-apple_camera/", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-apple-camera", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-apple-music-kit", + "description": "Tauri plugin for Apple MusicKit integration", + "version": "0.2.5", + "downloads": 2622, + "repository": "https://github.com/patrickquinn/tauri-plugin-apple-music-kit", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-apple-music-kit", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-aptabase", + "description": "Tauri Plugin for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps", + "version": "1.0.0", + "downloads": 32712, + "repository": "https://github.com/aptabase/tauri-plugin-aptabase", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-aptabase", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-askit", + "description": "Tauri plugin for Agent Stream Kit", + "version": "0.5.1", + "downloads": 341, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-askit", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-async-wrapper", + "description": "A procedural macro for offloading blocking tasks to background threads in Tauri apps, ensuring smooth and responsive performance.", + "version": "0.1.2", + "downloads": 2308, + "repository": "https://github.com/mamahuhu-io/tauri-plugin-async-wrapper", + "license": "", + "homepage": "https://github.com/mamahuhu-io/tauri-plugin-async-wrapper", + "crates_io": "https://crates.io/crates/tauri-plugin-async-wrapper", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-authenticator", + "description": "Use hardware security-keys in your Tauri App.", + "version": "2.0.0-rc.1", + "downloads": 22417, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-authenticator", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-authium", + "description": "Plugin for Tauri as a wrapper for Authium.", + "version": "0.2.2", + "downloads": 1867, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-authium", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-automation", + "description": "Tauri plugin for automation via WebDriver", + "version": "0.1.1", + "downloads": 4110, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-automation", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-autostart", + "description": "Automatically launch your application at startup.", + "version": "2.5.1", + "downloads": 1224825, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-autostart", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-barcode-scanner", + "description": "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS", + "version": "2.4.2", + "downloads": 38671, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-barcode-scanner", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-better-auth-license", + "description": "Tauri plugin for license-based authentication and secure device validation.", + "version": "0.0.12", + "downloads": 322, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-better-auth-license", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-billing", + "description": "A Tauri plugin to access the Android billing SDK", + "version": "0.1.4", + "downloads": 3059, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-billing", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-biometric", + "description": "Prompt the user for biometric authentication on Android and iOS.", + "version": "2.3.2", + "downloads": 24570, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-biometric", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-biometry", + "description": "A Tauri v2 plugin for biometric authentication (Touch ID, Face ID, fingerprint) on Android, macOS, iOS and Windows.", + "version": "0.2.5", + "downloads": 2606, + "repository": "https://github.com/Choochmeque/tauri-plugin-biometry", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-biometry", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-ble", + "description": "This is an tauri-plugin-ble", + "version": "0.1.2", + "downloads": 862, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-ble", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-blec", + "description": "BLE-Client plugin for Tauri", + "version": "0.8.1", + "downloads": 21211, + "repository": "https://github.com/MnlPhlp/tauri-plugin-blec", + "license": "", + "homepage": "https://github.com/MnlPhlp/tauri-plugin-blec", + "crates_io": "https://crates.io/crates/tauri-plugin-blec", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-bluetooth", + "description": "Tauri plugin for Bluetooth Low Energy", + "version": "0.1.1", + "downloads": 1329, + "repository": "https://github.com/26F-Studio/tauri-plugin-bluetooth", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-bluetooth", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-bluetooth-manager", + "description": "A Tauri plugin to manage Bluetooth adapters and devices in Linux.", + "version": "2.0.2", + "downloads": 1732, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-bluetooth-manager", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-board", + "description": "vending machine development board of kits for tauri, use kotlin", + "version": "1.7.6", + "downloads": 29292, + "repository": "https://github.com/cakioe/tauri-plugin-board", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-board", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-broadcast", + "description": "Tauri plugin for broadcast", + "version": "0.3.0", + "downloads": 1532, + "repository": "https://github.com/dote27/tauri-plugin-broadcast", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-broadcast", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-buttonkit", + "description": "Tauri plugin for detecting physical button presses on mobile devices", + "version": "0.1.0", + "downloads": 614, + "repository": "https://github.com/dovaldev/tauri-plugin-buttonkit", + "license": "", + "homepage": "https://github.com/dovaldev/tauri-plugin-buttonkit", + "crates_io": "https://crates.io/crates/tauri-plugin-buttonkit", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-cache", + "description": "Advanced disk caching solution for Tauri applications. Provides compression, TTL management, memory caching, automatic cleanup, and cross-platform support. Enhances data access performance and storage optimization.", + "version": "0.1.6", + "downloads": 3188, + "repository": "https://github.com/Taiizor/tauri-plugin-cache", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-cache", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-camera", + "description": "A Tauri plugin for accessing the camera on Android devices.", + "version": "0.1.4", + "downloads": 2054, + "repository": "https://github.com/charlesschaefer/tauri-plugin-camera", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-camera", + "npm": "https://www.npmjs.com/package/tauri-plugin-camera", + "version_npm": "0.1.4", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-centrifugo", + "description": "Tauri plugin for Centrifugo real-time communication using tokio-centrifuge", + "version": "0.1.2", + "downloads": 999, + "repository": "https://github.com/s00d/tauri-plugin-centrifugo", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-centrifugo", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-clerk", + "description": "An unofficial Tauri SDK for Clerk", + "version": "0.1.0", + "downloads": 272, + "repository": "https://github.com/Nipsuli/tauri-plugin-clerk/", + "license": "", + "homepage": "https://github.com/Nipsuli/tauri-plugin-clerk/", + "crates_io": "https://crates.io/crates/tauri-plugin-clerk", + "npm": "https://www.npmjs.com/package/tauri-plugin-clerk", + "version_npm": "0.1.0", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-cli", + "description": "Parse arguments from your Tauri application's command line interface.", + "version": "2.4.1", + "downloads": 210835, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-cli", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-clipboard", + "description": "A clipboard plugin for Tauri that supports text, html, rtf, files and image, as well as clipboard update listening.", + "version": "2.1.11", + "downloads": 95125, + "repository": "https://github.com/CrossCopy/tauri-plugin-clipboard", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-clipboard", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-clipboard-manager", + "description": "Read and write to the system clipboard.", + "version": "2.3.2", + "downloads": 916613, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-clipboard-manager", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-config-manager", + "description": "A Tauri plugin for managing configuration for Vasak applications.", + "version": "2.0.4", + "downloads": 1952, + "repository": "https://github.com/Vasak-OS/tauri-plugin-config-manager", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-config-manager", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-context-menu", + "description": "Handle native Context Menu in Tauri", + "version": "0.8.2", + "downloads": 17305, + "repository": "https://github.com/c2r0b/tauri-plugin-context-menu", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-context-menu", + "npm": "https://www.npmjs.com/package/tauri-plugin-context-menu", + "version_npm": "0.8.0", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-core", + "description": "Core is a reserved Tauri plugin name", + "version": "2.0.0-beta.0", + "downloads": 1615, + "repository": "https://github.com/tauri-apps/tauri-plugin-core", + "license": "", + "homepage": "https://tauri.app/", + "crates_io": "https://crates.io/crates/tauri-plugin-core", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-crypto-hw", + "description": "Android/iOS StrongBox/Secure Enclave Bindings+Wrapper for Tauri", + "version": "0.1.0", + "downloads": 616, + "repository": "https://github.com/auvoid/tauri-plugin-crypto-hw", + "license": "", + "homepage": "https://auvo.io", + "crates_io": "https://crates.io/crates/tauri-plugin-crypto-hw", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-decorum", + "description": "Opnionated window decoration controls for Tauri apps.", + "version": "1.1.1", + "downloads": 33722, + "repository": "https://github.com/clearlysid/tauri-plugin-decorum", + "license": "", + "homepage": "https://github.com/clearlysid/tauri-plugin-decorum", + "crates_io": "https://crates.io/crates/tauri-plugin-decorum", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-deep-link", + "description": "Set your Tauri application as the default handler for an URL", + "version": "2.4.5", + "downloads": 807932, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-deep-link", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-deno", + "description": "A tauri 2 plugin to use javascript code (deno) in the backend.", + "version": "0.2.0", + "downloads": 1367, + "repository": "https://github.com/marcomq/tauri-plugin-deno", + "license": "", + "homepage": "https://github.com/marcomq/tauri-plugin-deno", + "crates_io": "https://crates.io/crates/tauri-plugin-deno", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-desktop-underlay", + "description": "Tauri plugin for attaching a window to desktop, below icons and above wallpaper.", + "version": "0.2.0", + "downloads": 2467, + "repository": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay", + "license": "", + "homepage": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay", + "crates_io": "https://crates.io/crates/tauri-plugin-desktop-underlay", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-device", + "description": "Tauri plugin for accessing device information", + "version": "1.0.0", + "downloads": 449, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-device", + "npm": "https://www.npmjs.com/package/tauri-plugin-device", + "version_npm": "1.0.0", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-devtools", + "description": "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease.", + "version": "2.0.1", + "downloads": 395031, + "repository": "https://github.com/crabnebula-dev/devtools", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-devtools", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-devtools-app", + "description": "Connect with the Devtools for Tauri application", + "version": "2.0.1", + "downloads": 18072, + "repository": "https://github.com/crabnebula-dev/devtools", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-devtools-app", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-dialog", + "description": "Native system dialogs for opening and saving files along with message dialogs on your Tauri application.", + "version": "2.4.2", + "downloads": 3113904, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-dialog", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-drag", + "description": "Start a drag operation out of a Tauri window", + "version": "2.1.0", + "downloads": 24802, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-drag", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-drag-as-window", + "description": "Start a drag operation from a DOM element to its own window", + "version": "2.1.0", + "downloads": 4733, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-drag-as-window", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-dragout", + "description": "Tauri plugin providing native macOS drag-out (file promise) support", + "version": "0.1.1", + "downloads": 884, + "repository": "https://github.com/alexqqqqqq777/tauri-plugin-dragout", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-dragout", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-drpc", + "description": "A plugin for Tauri that adds support for Discord Rich Presence", + "version": "0.1.6", + "downloads": 5810, + "repository": "https://github.com/smokingplaya/tauri-plugin-drpc", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-drpc", + "npm": "https://www.npmjs.com/package/tauri-plugin-drpc", + "version_npm": "1.0.3", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-edge-to-edge", + "description": "Tauri plugin for iOS/Android Edge-to-Edge fullscreen support with safe area injection", + "version": "0.3.3", + "downloads": 230, + "repository": "https://github.com/1600822305/tauri-plugin-edge-to-edge", + "license": "", + "homepage": "https://github.com/1600822305/tauri-plugin-edge-to-edge", + "crates_io": "https://crates.io/crates/tauri-plugin-edge-to-edge", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-fanto", + "description": "tauri plugin fantoccini integrated with webdriver-downloader", + "version": "0.2.0", + "downloads": 3943, + "repository": "https://github.com/seongs1024/tauri-plugin-fanto", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-fanto", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-fcm-notifications", + "description": "A Tauri plugin for Firebase Cloud Messaging (FCM) notifications", + "version": "0.1.8", + "downloads": 2967, + "repository": "https://github.com/edenstrom/tauri-plugin-fcm-notifications", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-fcm-notifications", + "npm": "https://www.npmjs.com/package/tauri-plugin-fcm-notifications", + "version_npm": "0.1.4", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-ffmpeg", + "description": "FFmpeg plugin for Tauri 2: run ffmpeg/ffprobe with progress on desktop/mobile", + "version": "0.1.0", + "downloads": 109, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-ffmpeg", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-frame", + "description": "Opnionated window decoration controls for Tauri apps.", + "version": "1.1.1", + "downloads": 0, + "repository": "https://github.com/clarifei/tauri-plugin-frame", + "license": "", + "homepage": "https://github.com/clarifei/tauri-plugin-frame", + "crates_io": "https://crates.io/crates/tauri-plugin-frame", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-fs", + "description": "Access the file system.", + "version": "2.4.4", + "downloads": 3430910, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-fs", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-fs-ios", + "description": "A plugin for accessing the filesystem on ios", + "version": "0.4.0", + "downloads": 3115, + "repository": "https://github.com/kennardpeters/tauri-plugin-fs-ios", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-fs-ios", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-gamepad", + "description": "A plugin for Tauri that provides a polyfill for Gamepad Web API that works on most common platforms.", + "version": "0.0.5", + "downloads": 5014, + "repository": "https://github.com/DeveloperMindset-com/tauri-plugin-gamepad", + "license": "", + "homepage": "https://developermindset.com/tauri-plugin-gamepad/", + "crates_io": "https://crates.io/crates/tauri-plugin-gamepad", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-geolocation", + "description": "Get and track the device's current position", + "version": "2.3.2", + "downloads": 15167, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-geolocation", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-global-shortcut", + "description": "Register global hotkeys listeners on your Tauri application.", + "version": "2.3.1", + "downloads": 695531, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-global-shortcut", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-google-auth", + "description": "A Tauri v2 plugin that enables Google OAuth authentication", + "version": "0.3.4", + "downloads": 3536, + "repository": "https://github.com/Choochmeque/tauri-plugin-google-auth", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-google-auth", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-graphql-next", + "description": "Tauri plugin for GraphQL", + "version": "0.5.0", + "downloads": 2787, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-graphql-next", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-hal-steamworks", + "description": "Tauri plugin for steamworks that used in HAL", + "version": "0.0.4", + "downloads": 4496, + "repository": "https://github.com/HALLauncher/hal-steam-tools", + "license": "", + "homepage": "https://github.com/HALLauncher/hal-steam-tools", + "crates_io": "https://crates.io/crates/tauri-plugin-hal-steamworks", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-haptics", + "description": "Haptic feedback and vibrations on Android and iOS", + "version": "2.3.2", + "downloads": 17152, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-haptics", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-hid", + "description": "A Tauri plugin to provide access to USB HID devices", + "version": "0.2.2", + "downloads": 4512, + "repository": "https://github.com/RedfernElec/tauri-plugin-hid", + "license": "", + "homepage": "https://github.com/RedfernElec/tauri-plugin-hid", + "crates_io": "https://crates.io/crates/tauri-plugin-hid", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-holochain", + "description": "Ship holochain apps to all platforms", + "version": "0.0.0", + "downloads": 1314, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-holochain", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-holochain-service", + "description": "Tauri plugin enabling an Android app to run Holochain as a foreground service", + "version": "0.2.3", + "downloads": 2130, + "repository": "https://github.com/holochain/android-service-runtime", + "license": "", + "homepage": "https://github.com/holochain/android-service-runtime", + "crates_io": "https://crates.io/crates/tauri-plugin-holochain-service", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-holochain-service-client", + "description": "Tauri plugin enabling an Android app to run as a client of the tauri-plugin-holochain-service", + "version": "0.2.3", + "downloads": 2417, + "repository": "https://github.com/holochain/android-service-runtime", + "license": "", + "homepage": "https://github.com/holochain/android-service-runtime", + "crates_io": "https://crates.io/crates/tauri-plugin-holochain-service-client", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-hotkey", + "description": "Tauri Plugin to receive hotkey press and release OS events.\n", + "version": "0.1.15", + "downloads": 4554, + "repository": "https://github.com/voixapp/tauri-plugin-hotkey", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-hotkey", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-http", + "description": "Access an HTTP client written in Rust.", + "version": "2.5.4", + "downloads": 746001, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-http", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-http-ext", + "description": "Tauri plugin http ext api", + "version": "1.0.1", + "downloads": 7157, + "repository": "https://github.com/ardyfeb/tauri-plugin-http-ext", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-http-ext", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-hwinfo", + "description": "A cross-platform Tauri plugin to fetch CPU, RAM, GPU, and OS info.", + "version": "0.2.3", + "downloads": 3827, + "repository": "https://github.com/nikolchaa/tauri-plugin-hwinfo", + "license": "", + "homepage": "https://github.com/nikolchaa/tauri-plugin-hwinfo", + "crates_io": "https://crates.io/crates/tauri-plugin-hwinfo", + "npm": "https://www.npmjs.com/package/tauri-plugin-hwinfo", + "version_npm": "0.2.3", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-i18n", + "description": "Internationalization plugin using rust_i18n for tauri apps.", + "version": "1.0.0", + "downloads": 25, + "repository": "https://github.com/razein97/tauri-plugin-i18n", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-i18n", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-iap", + "description": "A Tauri v2 plugin that enables In-App Purchases (IAP)", + "version": "0.5.0", + "downloads": 5364, + "repository": "https://github.com/Choochmeque/tauri-plugin-iap", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-iap", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-in-app-browser", + "description": "Tauri plugin to open browsers in the app (SFSafariViewController & Chrome Custom Tabs)", + "version": "1.0.1", + "downloads": 760, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-in-app-browser", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-indexer", + "description": "a custom indexer (if the version is 1.0.0 then the plugin is ready)", + "version": "0.1.1", + "downloads": 801, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-indexer", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-intent", + "description": "Tauri plugin for handling Android and iOS intents.", + "version": "0.1.0", + "downloads": 365, + "repository": "https://github.com/modeckrus/tauri-plugin-intent", + "license": "", + "homepage": "https://github.com/modeckrus/tauri-plugin-intent", + "crates_io": "https://crates.io/crates/tauri-plugin-intent", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-ios-keyboard", + "description": "Tauri plugin for iOS keyboard event handling and management", + "version": "0.1.1", + "downloads": 885, + "repository": "https://github.com/pineapp/tauri-plugin-ios-keyboard", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-ios-keyboard", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-ios-network-detect", + "description": "A plugin that detects iOS network permission status and automatically displays an authorization.", + "version": "2.0.1", + "downloads": 1358, + "repository": "https://github.com/kingsword09/tauri-plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-ios-network-detect", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-is-simulator", + "description": "A simple Tauri plugin to check if the app is running in a simulator.", + "version": "1.0.0", + "downloads": 876, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-is-simulator", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-is-simulator-temp", + "description": "A simple Tauri plugin to check if the app is running in a simulator.", + "version": "0.0.0", + "downloads": 4576, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-is-simulator-temp", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-keep-screen-on", + "description": "A Tauri plugin that prevents screen timeout on Android and iOS", + "version": "0.1.4", + "downloads": 6667, + "repository": "https://gitlab.com/cristofa/tauri-plugin-keep-screen-on", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keep-screen-on", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-keepawake", + "description": "A Tauri plugin to keep the system awake", + "version": "0.1.1", + "downloads": 2972, + "repository": "https://github.com/thewh1teagle/tauri-plugin-keepawake", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keepawake", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-keychain", + "description": "A Tauri keychain plugin", + "version": "2.0.2", + "downloads": 6918, + "repository": "https://github.com/lindongchen/tauri-plugin-keychain", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keychain", + "npm": "https://www.npmjs.com/package/tauri-plugin-keychain", + "version_npm": "2.0.1", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-keygen", + "description": "A Tauri Plugin for Keygen.sh Licensing", + "version": "0.1.0", + "downloads": 1277, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keygen", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-keygen-rs", + "description": "Tauri plugin for Keygen.sh licensing, based on keygen-rs", + "version": "0.7.0", + "downloads": 7620, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keygen-rs", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-keygen-rs2", + "description": "Tauri plugin for Keygen.sh licensing, based on keygen-rs", + "version": "0.8.1", + "downloads": 9003, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keygen-rs2", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-keyring", + "description": "A tauri plugin wrapper for the keyring crate", + "version": "0.1.0", + "downloads": 8767, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keyring", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-keystore", + "description": "Interact with the device-native key storage (Android Keystore, iOS Keychain).", + "version": "2.1.0-alpha.1", + "downloads": 1271, + "repository": "https://github.com/impierce/tauri-plugin-keystore", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keystore", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-libmpv", + "description": "A Tauri plugin for embedding the mpv player in your app via libmpv.", + "version": "0.3.2", + "downloads": 1944, + "repository": "https://github.com/nini22P/tauri-plugin-libmpv", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-libmpv", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-libmpv-sys", + "description": "Raw FFI bindings for libmpv", + "version": "0.0.0", + "downloads": 615, + "repository": "https://github.com/nini22P/tauri-plugin-libmpv", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-libmpv-sys", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-localhost", + "description": "Expose your apps assets through a localhost server instead of the default custom protocol.", + "version": "2.3.1", + "downloads": 100677, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-localhost", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-log", + "description": "Configurable logging for your Tauri app.", + "version": "2.7.1", + "downloads": 2032127, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-log", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-m3", + "description": "Android Material3/MaterialYou Plugin", + "version": "0.2.2", + "downloads": 3797, + "repository": "https://github.com/0xk1f0/tauri-plugin-m3", + "license": "", + "homepage": "https://github.com/0xk1f0/tauri-plugin-m3", + "crates_io": "https://crates.io/crates/tauri-plugin-m3", + "npm": "https://www.npmjs.com/package/tauri-plugin-m3", + "version_npm": "0.2.2", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-machine-uid", + "description": "A Tauri plugin for retrieving machine UID", + "version": "0.1.3", + "downloads": 11787, + "repository": "https://github.com/SkipperNDT/tauri-plugin-machine-uid", + "license": "", + "homepage": "https://github.com/SkipperNDT/tauri-plugin-machine-uid", + "crates_io": "https://crates.io/crates/tauri-plugin-machine-uid", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-macos-haptics", + "description": "Utilize the Taptic Engine (TM) on macOS for Tauri v2 apps.", + "version": "1.0.0", + "downloads": 3133, + "repository": "https://github.com/itseeleeya/tauri-plugin-macos-haptics", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-macos-haptics", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-macos-input-monitor", + "description": "macOS-only Tauri plugin using CGEventTap FFI to intercept and override system keyboard shortcuts", + "version": "0.1.0", + "downloads": 20, + "repository": "https://github.com/yigitkonur/tauri-plugin-macos-input-monitor", + "license": "", + "homepage": "https://github.com/yigitkonur/tauri-plugin-macos-input-monitor", + "crates_io": "https://crates.io/crates/tauri-plugin-macos-input-monitor", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-macos-passkey", + "description": "Call macOS Passkey registration/login APIs in Tauri apps with ease!", + "version": "0.1.0", + "downloads": 401, + "repository": "https://github.com/yminghua/tauri-plugin-macos-passkey", + "license": "", + "homepage": "https://github.com/yminghua/tauri-passkey-demo", + "crates_io": "https://crates.io/crates/tauri-plugin-macos-passkey", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-matrix-svelte", + "description": "A Tauri plugin that exposes high level Matrix data through Svelte Rune stores", + "version": "0.2.0", + "downloads": 834, + "repository": "https://github.com/IT-ess/tauri-plugin-matrix-svelte", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-matrix-svelte", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mcp-gui", + "description": "A Tauri plugin that enables AI agents to interact with desktop GUIs through screenshots, DOM access, and input simulation utilizing MCP", + "version": "0.1.0", + "downloads": 163, + "repository": "https://github.com/delorenj/tauri-plugin-mcp", + "license": "", + "homepage": "https://delorenj.github.io", + "crates_io": "https://crates.io/crates/tauri-plugin-mcp-gui", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-media", + "description": "Advanced system media control integration plugin for Tauri applications with comprehensive playback controls, rich metadata support, and seamless native OS media interface integration across Windows, macOS, and Linux", + "version": "0.1.1", + "downloads": 674, + "repository": "https://github.com/Taiizor/tauri-plugin-media", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-media", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-medialibrary", + "description": "A tauri plugin to access the systems media library (e.g. the android medialibrary)", + "version": "0.13.0", + "downloads": 324, + "repository": "https://github.com/universalappfactory/tauri-plugin-medialibrary", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-medialibrary", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mixpanel", + "description": "Tauri plugin for Mixpanel analytics", + "version": "0.3.1", + "downloads": 6724, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-mixpanel", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mobile-onbackpressed-listener", + "description": "This plugin mainly provides event listener for controlling the onBackpressed action on mobile devices.", + "version": "2.0.1", + "downloads": 1221, + "repository": "https://github.com/kingsword09/tauri-plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-mobile-onbackpressed-listener", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mobile-share", + "description": "A Package for Sharing Tauri Mobile App Content", + "version": "0.1.2", + "downloads": 1671, + "repository": "https://github.com/tactile-eng/tauri-plugin-mobile-share", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-mobile-share", + "npm": "https://www.npmjs.com/package/tauri-plugin-mobile-share", + "version_npm": "0.1.2", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mpv", + "description": "A Tauri plugin for embedding the mpv player in your app by controlling its process via JSON IPC.", + "version": "0.5.2", + "downloads": 5604, + "repository": "https://github.com/nini22P/tauri-plugin-mpv", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-mpv", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-mqtt", + "description": "MQTT Client for Tauri App", + "version": "0.1.1", + "downloads": 2108, + "repository": "https://github.com/kuyoonjo/tauri-plugin-mqtt", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-mqtt", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-music-notification-api", + "description": "A Tauri plugin for music notifications", + "version": "0.2.0", + "downloads": 33, + "repository": "https://github.com/VMASPAD/tauri-plugin-music-notification", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-music-notification-api", + "npm": "https://www.npmjs.com/package/tauri-plugin-music-notification-api", + "version_npm": "0.1.0", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-musickit", + "description": "Tauri plugin for Apple MusicKit integration", + "version": "0.2.7", + "downloads": 791, + "repository": "https://github.com/patrickquinn/tauri-plugin-apple-music-kit", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-musickit", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-netwait", + "description": "A Tauri plugin for network status monitoring and waiting.", + "version": "0.2.0", + "downloads": 48, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-netwait", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-network", + "description": "A tauri plugin for retrieving system info", + "version": "2.0.4", + "downloads": 12224, + "repository": "https://github.com/HuakunShen/tauri-plugin-network", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-network", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-network-manager", + "description": "A Tauri plugin to manage network connections using networkmanager and systemd-networkd.", + "version": "2.0.1", + "downloads": 1211, + "repository": "https://github.com/Vasak-OS/tauri-plugin-network-manager", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-network-manager", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-nfc", + "description": "Read and write NFC tags on Android and iOS.", + "version": "2.3.3", + "downloads": 22334, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-nfc", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-nosleep", + "description": "Tauri plugin to prevent the power save functionality in the OS", + "version": "2.0.0-beta.1", + "downloads": 5924, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-nosleep", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-notification", + "description": "Send desktop and mobile notifications on your Tauri application.", + "version": "2.3.3", + "downloads": 1498054, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-notification", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-notifications", + "description": "A Tauri v2 plugin for sending notifications on desktop and mobile platforms with support for system notifications and push delivery via FCM and APNs.", + "version": "0.3.1", + "downloads": 1537, + "repository": "https://github.com/Choochmeque/tauri-plugin-notifications", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-notifications", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-ntb", + "description": "A Tauri plugin for custom title bars", + "version": "1.0.0", + "downloads": 54, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-ntb", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-oauth", + "description": "A Tauri plugin for spawning a localhost server. Needed for some oauth flows (Login with X).", + "version": "2.0.0", + "downloads": 68840, + "repository": "https://github.com/FabianLars/tauri-plugin-oauth", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-oauth", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-oblivion", + "description": "Tauri plugin for oblivion", + "version": "0.1.0", + "downloads": 1210, + "repository": "https://github.com/noctisynth/tauri-plugin-oblivion", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-oblivion", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-open", + "description": "A Tauri plugin to open files and URLs in the user's default application.", + "version": "0.1.2", + "downloads": 3677, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-open", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-opener", + "description": "Open files and URLs using their default application.", + "version": "2.5.2", + "downloads": 2237167, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-opener", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-openurl", + "description": "open url in default browser (just like target blank) in Tauri", + "version": "0.1.0", + "downloads": 5886, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-openurl", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-os", + "description": "Read information about the operating system.", + "version": "2.3.2", + "downloads": 787423, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-os", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-ota-updater", + "description": "Over-the-air updates for the Web assets in a Tauri app.", + "version": "2.0.5", + "downloads": 8872, + "repository": "https://github.com/crabnebula-dev/tauri-plugin-ota-updater", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-ota-updater", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-packagemanager", + "description": "A Tauri plugin for interfacing with the Android PackageManager API", + "version": "0.2.2", + "downloads": 2198, + "repository": "https://github.com/jack-weilage/tauri-plugin-packagemanager", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-packagemanager", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-persisted-scope", + "description": "Save filesystem and asset scopes and restore them when the app is reopened.", + "version": "2.3.4", + "downloads": 73120, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-persisted-scope", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-pinia", + "description": "Persistent Pinia stores for Tauri", + "version": "4.1.0", + "downloads": 54776, + "repository": "https://github.com/ferreira-tb/tauri-store", + "license": "", + "homepage": "https://tb.dev.br/tauri-store/plugin-pinia/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-pinia", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-plauth", + "description": "Tauri plugin for authentication (PLAUTH) supporting macOS and iOS platforms with ASWebAuthenticationSession", + "version": "1.0.4", + "downloads": 1537, + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth", + "license": "", + "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth", + "crates_io": "https://crates.io/crates/tauri-plugin-plauth", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-pldownloader", + "description": "Tauri plugin for cross-platform file downloading (Android/iOS) with public/private destinations and a TypeScript client.", + "version": "1.0.1", + "downloads": 807, + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader", + "license": "", + "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader", + "crates_io": "https://crates.io/crates/tauri-plugin-pldownloader", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-pliap", + "description": "Tauri plugin for in-app purchases and subscriptions supporting desktop and mobile platforms", + "version": "1.0.6", + "downloads": 1093, + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pliap", + "license": "", + "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-pliap", + "crates_io": "https://crates.io/crates/tauri-plugin-pliap", + "npm": "https://www.npmjs.com/package/tauri-plugin-pliap", + "version_npm": "1.0.6", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-polygon", + "description": "A plugin for [tauri@v2](https://tauri.app/) to achieve click-through of the tauri main window by allowing developers to define polygons, thus customizing the mouse response area.", + "version": "0.1.2", + "downloads": 2588, + "repository": "https://github.com/houycth/tauri-plugin-polygon", + "license": "", + "homepage": "https://github.com/houycth/tauri-plugin-polygon", + "crates_io": "https://crates.io/crates/tauri-plugin-polygon", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-positioner", + "description": "Position your windows at well-known locations.", + "version": "2.3.1", + "downloads": 288503, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-positioner", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-posthog", + "description": "A Tauri v2 plugin for integrating PostHog analytics into your Tauri applications", + "version": "0.2.4", + "downloads": 4537, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-posthog", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-power-manager", + "description": "tauri plugin for shut down, reboot or log out operations.", + "version": "0.1.1", + "downloads": 4328, + "repository": "https://github.com/cijiugechu/tauri-plugin-power-manager", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-power-manager", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-prevent-default", + "description": "Disable default browser shortcuts", + "version": "4.0.3", + "downloads": 91290, + "repository": "https://github.com/ferreira-tb/tauri-plugin-prevent-default", + "license": "", + "homepage": "https://github.com/ferreira-tb/tauri-plugin-prevent-default", + "crates_io": "https://crates.io/crates/tauri-plugin-prevent-default", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-printer", + "description": "Tauri Plugin for printer access", + "version": "1.0.10", + "downloads": 37912, + "repository": "https://github.com/alfianlensundev/tauri-plugin-printer", + "license": "", + "homepage": "https://crates.io/crates/tauri-plugin-printer", + "crates_io": "https://crates.io/crates/tauri-plugin-printer", + "npm": "https://www.npmjs.com/package/tauri-plugin-printer", + "version_npm": "1.0.12", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-printer-sujin999", + "description": "Tauri Plugin for printer access (Edit)", + "version": "1.0.15", + "downloads": 5797, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-printer-sujin999", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-printer-v2", + "description": "Tauri plugin for printing", + "version": "0.2.4", + "downloads": 1813, + "repository": "https://github.com/chen-collab/tauri-plugin-printer", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-printer-v2", + "npm": "https://www.npmjs.com/package/tauri-plugin-printer-v2", + "version_npm": "0.2.4", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-printer-wkhtml-bin", + "description": "Tauri plugin for printer with embedded wkhtmltopdf for Windows", + "version": "0.1.3", + "downloads": 96, + "repository": "https://github.com/FrancoJFerreyra/tauri-plugin-printer", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-printer-wkhtml-bin", + "npm": "https://www.npmjs.com/package/tauri-plugin-printer-wkhtml-bin", + "version_npm": "0.1.3", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-process", + "description": "Access the current process of your Tauri application.", + "version": "2.3.1", + "downloads": 1098295, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-process", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-pytauri", + "description": "PyTauri plugin for Tauri", + "version": "0.8.0", + "downloads": 6867, + "repository": "https://github.com/pytauri/pytauri/", + "license": "", + "homepage": "https://github.com/pytauri/pytauri/", + "crates_io": "https://crates.io/crates/tauri-plugin-pytauri", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-python", + "description": "A tauri 2 plugin to use python code in the backend.", + "version": "0.3.7", + "downloads": 5544, + "repository": "https://github.com/marcomq/tauri-plugin-python", + "license": "", + "homepage": "https://github.com/marcomq/tauri-plugin-python", + "crates_io": "https://crates.io/crates/tauri-plugin-python", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-remote-push", + "description": "A Tauri plugin for remote push notifications on iOS and Android.", + "version": "1.0.10", + "downloads": 3982, + "repository": "https://github.com/YOUR_USERNAME/tauri-plugin-remote-push", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-remote-push", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-rspc", + "description": "Tauri adapter for rspc", + "version": "0.2.2", + "downloads": 2141, + "repository": "https://github.com/specta-rs/rspc", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-rspc", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-rusqlite", + "description": "Tauri Plugin based on Rusqlite", + "version": "0.4.4", + "downloads": 3875, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-rusqlite", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-safe-area-insets", + "description": "Tauri plugin for android safe area insets.", + "version": "0.1.0", + "downloads": 3416, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-safe-area-insets", + "npm": "https://www.npmjs.com/package/tauri-plugin-safe-area-insets", + "version_npm": "0.1.0", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-safe-area-insets-css", + "description": "A Tauri plugin to provide safe area insets CSS variables for mobile apps.", + "version": "0.2.0", + "downloads": 1110, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-safe-area-insets-css", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-schedule-task", + "description": "A Tauri plugin for scheduling tasks using cron-like syntax.", + "version": "0.1.0", + "downloads": 485, + "repository": "https://github.com/charlesschaefer/tauri-plugin-schedule-task", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-schedule-task", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-secure-storage", + "description": "Tauri plugin for secure storage using the system's keyring.", + "version": "1.4.0", + "downloads": 1393, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-secure-storage", + "npm": "https://www.npmjs.com/package/tauri-plugin-secure-storage", + "version_npm": "1.4.0", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sentry", + "description": "An experimental Tauri Plugin for Sentry", + "version": "0.5.0", + "downloads": 63319, + "repository": "https://github.com/timfish/sentry-tauri", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sentry", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-serialplugin", + "description": "Access the current process of your Tauri application.", + "version": "2.21.1", + "downloads": 33673, + "repository": "https://github.com/s00d/tauri-plugin-serialplugin", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-serialplugin", + "npm": "https://www.npmjs.com/package/tauri-plugin-serialplugin", + "version_npm": "2.17.1", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-serialport-v1", + "description": "A tauri plugin developed based on Serialport.", + "version": "0.1.0", + "downloads": 1441, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-serialport-v1", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-share", + "description": "A Tauri share plugin", + "version": "2.0.5", + "downloads": 4328, + "repository": "https://github.com/lindongchen/tauri-plugin-share", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-share", + "npm": "https://www.npmjs.com/package/tauri-plugin-share", + "version_npm": "2.0.4", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sharekit", + "description": "A Tauri v2 plugin that enables sharing content with native sharing interfaces on Android, iOS, macOS and Windows.", + "version": "0.2.4", + "downloads": 3126, + "repository": "https://github.com/Choochmeque/tauri-plugin-sharekit", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sharekit", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sharesheet", + "description": "Share content with the Android Sharesheet and iOS Share Pane.", + "version": "0.0.1", + "downloads": 7407, + "repository": "https://github.com/buildyourwebapp/tauri-plugin-sharesheet", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sharesheet", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-shell", + "description": "Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application.", + "version": "2.3.3", + "downloads": 2096437, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-shell", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-shellx", + "description": "Unlocked Tauri Shell Plugin", + "version": "2.0.16", + "downloads": 16086, + "repository": "https://github.com/HuakunShen/tauri-plugin-shellx", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-shellx", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sherpa-ncnn", + "description": "Real-time Speech recognition plugin for Tauri V2 Android.", + "version": "0.1.4", + "downloads": 1272, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sherpa-ncnn", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sign-in-with-apple", + "description": "Add Sign In With Apple capabilities to your Tauri iOS App.", + "version": "1.0.2", + "downloads": 5969, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sign-in-with-apple", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-single-instance", + "description": "Ensure a single instance of your tauri app is running.", + "version": "2.3.6", + "downloads": 845232, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-single-instance", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-spotlight", + "description": "A Tauri plugin that provides a MacOS Spotlight-like search functionality for Tauri windows.", + "version": "0.2.0", + "downloads": 4864, + "repository": "https://github.com/zzzze/tauri-plugin-spotlight", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-spotlight", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sql", + "description": "Interface with SQL databases.", + "version": "2.3.1", + "downloads": 154072, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sql", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sqlite", + "description": "tauri plugin for sqlite", + "version": "0.1.1", + "downloads": 1251, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sqlite", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sqlite-plus", + "description": "Interface with SQL databases.", + "version": "0.0.1", + "downloads": 459, + "repository": "https://github.com/popo1221/tauri-plugin-sqlite", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sqlite-plus", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sse", + "description": "A simple Tauri plugin for Server-Sent Events (SSE), enabling real-time, one-way updates from server to your Tauri frontend.", + "version": "0.1.1", + "downloads": 49, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sse", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-state", + "description": "Dead simple state management for tauri", + "version": "0.1.0", + "downloads": 1230, + "repository": "https://github.com/glowsquid-launcher/glowsquid", + "license": "", + "homepage": "https://github.com/glowsquid-launcher/glowsquid/tree/dev/libs/tauri-plugin-state", + "crates_io": "https://crates.io/crates/tauri-plugin-state", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-status-bar-color", + "description": "A Tauri plugin for set status bar's color.", + "version": "1.0.0", + "downloads": 1318, + "repository": "https://github.com/Cinea4678/tauri-plugin-status-bar-color", + "license": "", + "homepage": "https://github.com/Cinea4678/tauri-plugin-status-bar-color", + "crates_io": "https://crates.io/crates/tauri-plugin-status-bar-color", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-store", + "description": "Simple, persistent key-value store.", + "version": "2.4.1", + "downloads": 578796, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-store", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-stronghold", + "description": "Store secrets and keys using the IOTA Stronghold secret management engine.", + "version": "2.3.1", + "downloads": 88315, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-stronghold", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-structure-manager", + "description": "A Tauri plugin for managing application structure, including directory and file creation and validation. This plugin helps ensure that the necessary project structure is maintained and allows for easy setup and verification of the application's file system.", + "version": "0.3.8", + "downloads": 5773, + "repository": "https://github.com/HubioLabs/tauri-plugin-structure-manager", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-structure-manager", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-sumup", + "description": "Tauri plugin for SumUp payment processing integration on iOS and Android", + "version": "0.1.3", + "downloads": 924, + "repository": "https://github.com/2221ch/tauri-plugin-sumup", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sumup", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-svelte", + "description": "Persistent Svelte stores for Tauri", + "version": "3.1.0", + "downloads": 17978, + "repository": "https://github.com/ferreira-tb/tauri-store", + "license": "", + "homepage": "https://tb.dev.br/tauri-store/plugin-svelte/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-svelte", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-swipe-back-ios", + "description": "swiping gesture navigation support in iOS", + "version": "1.0.0", + "downloads": 1292, + "repository": "https://github.com/Cinea4678/tauri-plugin-swipe-back-ios", + "license": "", + "homepage": "https://github.com/Cinea4678/tauri-plugin-swipe-back-ios", + "crates_io": "https://crates.io/crates/tauri-plugin-swipe-back-ios", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-system-info", + "description": "A tauri plugin for retrieving system info", + "version": "2.0.9", + "downloads": 26153, + "repository": "https://github.com/HuakunShen/tauri-plugin-system-info", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-system-info", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-tauri", + "description": "Tauri is a reserved Tauri plugin name", + "version": "2.0.0-beta.0", + "downloads": 1301, + "repository": "https://github.com/tauri-apps/reserved-plugins", + "license": "", + "homepage": "https://tauri.app/", + "crates_io": "https://crates.io/crates/tauri-plugin-tauri", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-tcp", + "description": "TCP Socket for Tauri App", + "version": "0.1.2", + "downloads": 2814, + "repository": "https://github.com/kuyoonjo/tauri-plugin-tcp", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-tcp", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-theme", + "description": "Dynamically change Tauri App theme", + "version": "1.0.0", + "downloads": 56508, + "repository": "https://github.com/wyhaya/tauri-plugin-theme", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-theme", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-theme-v1", + "description": "Dynamically change Tauri App theme", + "version": "0.2.1", + "downloads": 2511, + "repository": "https://github.com/wyhaya/tauri-plugin-theme", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-theme-v1", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-tinys-internal-fs", + "description": "This plugin is primarily designed for Tinywang's convenience in developing Tauri applications and is tailored to personal needs only.", + "version": "0.1.3", + "downloads": 2592, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-tinys-internal-fs", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-toast", + "description": "A Tauri plugin for showing toast notifications on Android", + "version": "0.0.2", + "downloads": 682, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-toast", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-torch", + "description": "A simple flash/torch control plugin for Tauri applications.", + "version": "0.1.0", + "downloads": 574, + "repository": "https://github.com/sosweetham/tauri-plugin-torch", + "license": "", + "homepage": "https://kodski.com", + "crates_io": "https://crates.io/crates/tauri-plugin-torch", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-typegen", + "description": "DEPRECATED - This crate has been renamed. Please use the new crate: **[tauri-typegen](https://crates.io/crates/tauri-typegen)**", + "version": "0.1.6", + "downloads": 1099, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-typegen", + "npm": "https://www.npmjs.com/package/tauri-plugin-typegen", + "version_npm": "0.1.5", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-udp", + "description": "UDP Socket for Tauri App", + "version": "0.1.2", + "downloads": 3277, + "repository": "https://github.com/kuyoonjo/tauri-plugin-udp", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-udp", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-updater", + "description": "In-app updates for Tauri applications.", + "version": "2.9.0", + "downloads": 1260444, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-updater", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-upload", + "description": "Upload files from disk to a remote server over HTTP.", + "version": "2.3.2", + "downloads": 59711, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-upload", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-usagestats", + "description": "A Tauri plugin to interact with the Android UsageStats API", + "version": "0.1.1", + "downloads": 1149, + "repository": "https://github.com/jack-weilage/tauri-plugin-usagestats", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-usagestats", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-use-ffmpeg", + "description": "A Tauri plugin for using FFmpeg without pre-installation", + "version": "0.1.0", + "downloads": 196, + "repository": "https://github.com/lin52025iq/tauri-plugin-use-ffmpeg", + "license": "", + "homepage": "https://github.com/lin52025iq/tauri-plugin-use-ffmpeg", + "crates_io": "https://crates.io/crates/tauri-plugin-use-ffmpeg", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-user-data", + "description": "User Data API for Tauri aplications (Created for VasakOS)", + "version": "2.0.1", + "downloads": 802, + "repository": "https://github.com/Vasak-OS/tauri-plugin-user-data", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-user-data", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-valtio", + "description": "Persistent Valtio stores for Tauri", + "version": "3.2.0", + "downloads": 16033, + "repository": "https://github.com/ferreira-tb/tauri-store", + "license": "", + "homepage": "https://tb.dev.br/tauri-store/plugin-valtio/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-valtio", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-vicons", + "description": "Icon API for Tauri plugins (Created for VasakOS)", + "version": "2.0.2", + "downloads": 1146, + "repository": "https://github.com/Vasak-OS/tauri-plugin-vicons/", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-vicons", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-video-thumbnail", + "description": "Generate video thumbnails from URLs or local paths for Tauri applications", + "version": "0.1.0", + "downloads": 21, + "repository": "https://github.com/dickwu/tauri-plugin-video-thumbnail", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-video-thumbnail", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-videoplayer", + "description": "Fullscreen native video player for tauri", + "version": "0.1.6", + "downloads": 1572, + "repository": "https://github.com/YeonV/tauri-plugin-videoplayer", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-videoplayer", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-view", + "description": "A mobile plugin for Tauri for viewing and sharing files.", + "version": "0.0.5", + "downloads": 1180, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-view", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-vnidrop-share", + "description": "A Tauri plugin for sharing content via the system's share dialog.", + "version": "0.2.0", + "downloads": 1788, + "repository": "https://github.com/vnidrop/plugin-share", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-vnidrop-share", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-vue", + "description": "Persistence for Tauri and Vue", + "version": "2.1.0", + "downloads": 4733, + "repository": "https://github.com/ferreira-tb/tauri-store", + "license": "", + "homepage": "https://tb.dev.br/tauri-store/plugin-vue/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-vue", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-wallpaper", + "description": "A Tauri plugin to set your window as wallpaper behind desktop icons", + "version": "2.0.2", + "downloads": 4357, + "repository": "https://github.com/meslzy/tauri-plugin-wallpaper", + "license": "", + "homepage": "https://github.com/meslzy/tauri-plugin-wallpaper", + "crates_io": "https://crates.io/crates/tauri-plugin-wallpaper", + "npm": "https://www.npmjs.com/package/tauri-plugin-wallpaper", + "version_npm": "2.0.2", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-web-auth", + "description": "Leverage iOS' ASWebAuthenticationSession and Android's Custom Tabs to authenticate users in your Tauri app.", + "version": "1.0.0", + "downloads": 26249, + "repository": "https://github.com/Manaf941/tauri-plugin-web_auth", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-web-auth", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-web-transport", + "description": "A Tauri plugin to polyfill WebTransport (on Safari)", + "version": "0.1.0", + "downloads": 630, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-web-transport", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-webauthn", + "description": "a Tauri plugin for WebAuthn", + "version": "0.2.0", + "downloads": 1632, + "repository": "https://github.com/Profiidev/tauri-plugin-webauthn", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-webauthn", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-websocket", + "description": "Expose a WebSocket server to your Tauri frontend.", + "version": "2.4.1", + "downloads": 132528, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-websocket", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-widget", + "description": "A Tauri plugin to interact with App Widgets (Android). Allows your Tauri app to shared preferences (Android), and update timeline widgets.", + "version": "0.1.2", + "downloads": 763, + "repository": "https://github.com/fwy13/tauri-plugin-widget", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-widget", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-window", + "description": "Interact with the Tauri window.", + "version": "2.0.0-alpha.2", + "downloads": 112489, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-window", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-window-state", + "description": "Save window positions and sizes and restore them when the app is reopened.", + "version": "2.4.1", + "downloads": 803403, + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-window-state", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-zippy", + "description": "an async-first virtual file store with an accompanying Tauri plugin", + "version": "0.0.0", + "downloads": 1327, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-zippy", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-zubridge", + "description": "A Tauri plugin for state management between frontend and backend", + "version": "0.1.0", + "downloads": 594, + "repository": "https://github.com/goosewobbler/zubridge", + "license": "", + "homepage": "https://github.com/goosewobbler/zubridge/tree/main/packages/tauri-plugin-zubridge", + "crates_io": "https://crates.io/crates/tauri-plugin-zubridge", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-zustand", + "description": "Persistent Zustand stores for Tauri", + "version": "1.1.0", + "downloads": 8875, + "repository": "https://github.com/ferreira-tb/tauri-store", + "license": "", + "homepage": "https://tb.dev.br/tauri-store/plugin-zustand/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-zustand", + "github_stars": null + }, + { + "source": "crates", + "name": "tauri-plugin-zustand-storage", + "description": "A Tauri plugin for zustand storage", + "version": "0.1.9", + "downloads": 11966, + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-zustand-storage", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-sentry-api", + "description": "Tauri Plugin for Sentry", + "version": "0.5.0", + "date": "2025-09-03T11:56:06.706Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-sentry-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-clipboard-api", + "description": "[![Clippy](https://github.com/CrossCopy/tauri-plugin-clipboard/actions/workflows/clippy.yml/badge.svg)](https://github.com/CrossCopy/tauri-plugin-clipboard/actions/workflows/clippy.yml) [![Test](https://github.com/CrossCopy/tauri-plugin-clipboard/actions/", + "version": "2.1.11", + "date": "2024-10-17T01:57:04.255Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-clipboard-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@fabianlars/tauri-plugin-oauth", + "description": "A Tauri plugin for spawning a localhost server. Needed for some oauth flows (Login with X).", + "version": "2.0.0", + "date": "2024-11-05T15:18:25.651Z", + "repository": "https://github.com/FabianLars/tauri-plugin-oauth", + "npm": "https://www.npmjs.com/package/%40fabianlars%2Ftauri-plugin-oauth", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-mixpanel-api", + "description": "Tauri plugin API for Mixpanel analytics", + "version": "0.1.0", + "date": "2025-04-26T05:49:37.624Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-mixpanel-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-keyring-api", + "description": "![NPM Version](https://img.shields.io/npm/v/tauri-plugin-keyring-api) ![Crates.io Version](https://img.shields.io/crates/v/tauri-plugin-keyring)", + "version": "0.1.1", + "date": "2024-12-23T20:58:25.541Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-keyring-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-fs-ios-api", + "description": "# tauri-plugin-fs-ios", + "version": "0.4.0", + "date": "2025-02-13T05:46:05.386Z", + "repository": "https://github.com/kennardpeters/tauri-plugin-fs-ios", + "npm": "https://www.npmjs.com/package/tauri-plugin-fs-ios-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-askit-api", + "description": "Tauri plugin for Agent Stream Kit", + "version": "0.5.1", + "date": "2025-12-07T14:10:43.942Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-askit-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@proj-airi/tauri-plugin-mcp", + "description": "A Tauri plugin for interacting with MCP servers.", + "version": "0.8.0-alpha.8", + "date": "2025-12-01T19:02:36.221Z", + "repository": "https://github.com/moeru-ai/airi", + "npm": "https://www.npmjs.com/package/%40proj-airi%2Ftauri-plugin-mcp", + "github_stars": null + }, + { + "source": "npm", + "name": "@crabnebula/tauri-plugin-better-auth-license", + "description": "Tauri plugin for license-based authentication and secure device validation.", + "version": "0.0.9", + "date": "2025-11-14T19:15:29.584Z", + "repository": "https://github.com/crabnebula-dev/better-auth-license", + "npm": "https://www.npmjs.com/package/%40crabnebula%2Ftauri-plugin-better-auth-license", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-nosleep-api", + "description": "Tauri plugin to block the power save functionality in the OS", + "version": "0.1.1", + "date": "2023-11-08T16:21:55.062Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-nosleep-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@hypothesi/tauri-plugin-mcp-bridge", + "description": "JavaScript bindings for @hypothesi/tauri-plugin-mcp-bridge - MCP Bridge plugin for Tauri", + "version": "0.4.0", + "date": "2025-12-05T22:24:42.568Z", + "repository": "https://github.com/hypothesi/mcp-server-tauri", + "npm": "https://www.npmjs.com/package/%40hypothesi%2Ftauri-plugin-mcp-bridge", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-keep-screen-on-api", + "description": "Tauri plugin that provides commands to disable automatic screen dimming in Adroid and iOS.", + "version": "0.1.4", + "date": "2024-08-30T16:47:34.780Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-keep-screen-on-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-libmpv-api", + "description": "A Tauri plugin for embedding the mpv player in your app via libmpv.", + "version": "0.3.2", + "date": "2025-11-24T04:33:04.510Z", + "repository": "https://github.com/nini22P/tauri-plugin-libmpv", + "npm": "https://www.npmjs.com/package/tauri-plugin-libmpv-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-pytauri-api", + "description": "js api for crate tauri-plugin-pytauri", + "version": "0.8.0", + "date": "2025-09-01T09:14:35.148Z", + "repository": "https://github.com/pytauri/pytauri", + "npm": "https://www.npmjs.com/package/tauri-plugin-pytauri-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-broadcast-api", + "description": "Tauri plugin for broadcast", + "version": "0.3.0", + "date": "2025-11-28T02:33:51.750Z", + "repository": "https://github.com/dote27/tauri-plugin-broadcast", + "npm": "https://www.npmjs.com/package/tauri-plugin-broadcast-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-serialplugin-api", + "description": "[![npm version](https://img.shields.io/npm/v/tauri-plugin-serialplugin-api/latest?style=for-the-badge)](https://www.npmjs.com/package/tauri-plugin-serialplugin-api) [![Crates.io](https://img.shields.io/crates/v/tauri-plugin-serialplugin?style=for-the-badg", + "version": "2.21.1", + "date": "2025-11-05T12:27:34.148Z", + "repository": "https://github.com/s00d/tauri-plugin-serialplugin", + "npm": "https://www.npmjs.com/package/tauri-plugin-serialplugin-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-videoplayer-api", + "description": "[![crate](https://img.shields.io/crates/v/tauri-plugin-videoplayer.svg?logo=rust&logoColor=white)](https://crates.io/crates/tauri-plugin-videoplayer) [![npm](https://img.shields.io/npm/v/tauri-plugin-videoplayer-api?logo=npm&logoColor=white)](https://www.", + "version": "0.1.6", + "date": "2025-10-17T00:14:50.947Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-videoplayer-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-netwait-api", + "description": "A Tauri plugin for network status monitoring and waiting.", + "version": "0.1.0", + "date": "2025-11-25T13:25:05.126Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-netwait-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@razein97/tauri-plugin-rusqlite2", + "description": "A fork of tauri-plugin-sqlite by @bspeckco using rusqlite, supporting only SQLite with added transaction capabilities.", + "version": "2.2.5", + "date": "2025-11-11T14:48:07.052Z", + "repository": "https://github.com/razein97/tauri-plugin-rusqlite2", + "npm": "https://www.npmjs.com/package/%40razein97%2Ftauri-plugin-rusqlite2", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-mpv-api", + "description": "A Tauri plugin for embedding the mpv player in your app by controlling its process via JSON IPC.", + "version": "0.5.2", + "date": "2025-11-18T12:39:29.728Z", + "repository": "https://github.com/nini22P/tauri-plugin-mpv", + "npm": "https://www.npmjs.com/package/tauri-plugin-mpv-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@smbcloud/tauri-plugin-android-tv-check-api", + "description": "A Tauri plugin to check if the device is an Android TV device.", + "version": "1.1.4", + "date": "2025-08-21T09:05:24.070Z", + "repository": "https://github.com/smbcloudXYZ/tauri-plugin-android-tv-check", + "npm": "https://www.npmjs.com/package/%40smbcloud%2Ftauri-plugin-android-tv-check-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-macos-permissions-api", + "description": "Support for checking and requesting macos system permissions.", + "version": "2.3.0", + "date": "2025-05-06T13:37:54.075Z", + "repository": "https://github.com/ayangweb/tauri-plugin-macos-permissions", + "npm": "https://www.npmjs.com/package/tauri-plugin-macos-permissions-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-sse-api", + "description": "![Crates.io Version](https://img.shields.io/crates/v/tauri-plugin-sse) ![License](https://img.shields.io/badge/License-MIT%20or%20Apache%202-green.svg)", + "version": "0.1.1", + "date": "2025-11-20T01:40:23.023Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-sse-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-desktop-underlay-api", + "description": "Tauri plugin for attaching a window to desktop, below icons and above wallpaper.", + "version": "0.2.0", + "date": "2025-10-29T05:27:48.705Z", + "repository": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay", + "npm": "https://www.npmjs.com/package/tauri-plugin-desktop-underlay-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-widget-api", + "description": "A Tauri plugin to interact with App Widgets (Android). Allows your Tauri app to shared preferences (Android), and update timeline widgets.", + "version": "0.1.1", + "date": "2025-09-28T14:08:48.241Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-widget-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@thenbe/tauri-plugin-serialport-api", + "description": "A tauri plugin developed based on Serialport.", + "version": "1.0.0", + "date": "2024-02-12T20:20:37.148Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40thenbe%2Ftauri-plugin-serialport-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-zustand-storage-api", + "description": "A Tauri plugin for zustand storage", + "version": "0.1.9", + "date": "2024-02-13T04:25:19.337Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-zustand-storage-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-store-api", + "description": "Simple, persistent key-value store.", + "version": "0.0.0", + "date": "2023-05-05T09:17:59.741Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-store-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-nosleep-api-fork", + "description": "Tauri plugin to block the power save functionality in the OS", + "version": "0.1.3", + "date": "2024-04-10T21:23:41.483Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-nosleep-api-fork", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-sqlite-api", + "description": "tauri plugin for sqlite", + "version": "0.1.2", + "date": "2025-04-27T03:54:43.775Z", + "repository": "https://github.com/return764/tauri-plugin-sqlite", + "npm": "https://www.npmjs.com/package/tauri-plugin-sqlite-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-reqwest", + "description": "定制化tauri-plugin-reqwest", + "version": "0.0.4", + "date": "2022-10-30T04:30:21.688Z", + "repository": "https://github.com/ddchef/tauri-plugin-reqwest", + "npm": "https://www.npmjs.com/package/tauri-plugin-reqwest", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-web-auth-api", + "description": "Leverage iOS' ASWebAuthenticationSession and Android's Custom Tabs to authenticate users in your Tauri app.", + "version": "1.0.0", + "date": "2025-04-21T20:04:30.724Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-web-auth-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-remote-push-api", + "description": "A Tauri plugin for remote push notifications on iOS and Android.", + "version": "1.0.10", + "date": "2025-06-23T16:25:18.065Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-remote-push-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@universalappfactory/tauri-plugin-medialibrary", + "description": "A tauri plugin to access the systems media library (e.g. the android medialibrary)", + "version": "0.11.0", + "date": "2025-10-11T07:59:07.838Z", + "repository": "https://github.com/universalappfactory/tauri-plugin-medialibrary", + "npm": "https://www.npmjs.com/package/%40universalappfactory%2Ftauri-plugin-medialibrary", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-positioner-api", + "description": "Helps positioning your tauri windows.", + "version": "0.2.7", + "date": "2022-06-16T12:15:12.749Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-positioner-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-system-info-api", + "description": "System Info Plugin for Tauri Apps", + "version": "2.0.10", + "date": "2025-03-18T11:21:02.641Z", + "repository": "https://github.com/HuakunShen/tauri-plugin-system-info", + "npm": "https://www.npmjs.com/package/tauri-plugin-system-info-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-posthog-api", + "description": "A Tauri v2 plugin for integrating PostHog analytics - JavaScript/TypeScript API", + "version": "0.2.2", + "date": "2025-09-05T01:44:53.378Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-posthog-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@bspeckco/tauri-plugin-sqlite", + "description": "A fork of tauri-plugin-sql using rusqlite, supporting only SQLite with added transaction capabilities.", + "version": "0.1.7", + "date": "2025-04-15T11:55:33.983Z", + "repository": "https://github.com/bspeckco/tauri-v2-plugin-workspace", + "npm": "https://www.npmjs.com/package/%40bspeckco%2Ftauri-plugin-sqlite", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-apple-music-kit-api", + "description": "Tauri plugin for Apple MusicKit integration - TypeScript API bindings", + "version": "0.2.7", + "date": "2025-07-30T18:32:57.442Z", + "repository": "https://github.com/patrickquinn/tauri-plugin-apple-music-kit", + "npm": "https://www.npmjs.com/package/tauri-plugin-apple-music-kit-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-screenshots-api", + "description": "Get screenshots of windows and monitors.", + "version": "2.2.0", + "date": "2025-05-01T02:55:08.120Z", + "repository": "https://github.com/ayangweb/tauri-plugin-screenshots", + "npm": "https://www.npmjs.com/package/tauri-plugin-screenshots-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@bling-yshs/tauri-plugin-toast", + "description": "A Tauri plugin for showing toast notifications on Android", + "version": "0.0.1", + "date": "2025-08-27T06:47:03.259Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40bling-yshs%2Ftauri-plugin-toast", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-locale-api", + "description": "get the locale of the system.", + "version": "2.0.1", + "date": "2025-03-24T15:23:43.564Z", + "repository": "https://github.com/ayangweb/tauri-plugin-locale", + "npm": "https://www.npmjs.com/package/tauri-plugin-locale-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-plauth-api", + "description": "Tauri plugin for authentication (PLAUTH) supporting macOS and iOS platforms with ASWebAuthenticationSession", + "version": "1.0.4", + "date": "2025-09-24T09:37:42.265Z", + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth", + "npm": "https://www.npmjs.com/package/tauri-plugin-plauth-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@mcitem/tauri-plugin-axum", + "description": "A Tauri plugin that allows calling Axum Router endpoints directly.", + "version": "0.7.1", + "date": "2025-08-26T07:45:13.961Z", + "repository": "https://github.com/mcitem/tauri-plugin-axum", + "npm": "https://www.npmjs.com/package/%40mcitem%2Ftauri-plugin-axum", + "github_stars": null + }, + { + "source": "npm", + "name": "@0x330a/tauri-plugin-p256-signer-api", + "description": "JS Bindings for the tauri-plugin-p256-signer Tauri plugin", + "version": "0.1.2", + "date": "2025-09-11T12:18:34.710Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%400x330a%2Ftauri-plugin-p256-signer-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-android-fs-api", + "description": "Android file system API for Tauri.", + "version": "23.0.1", + "date": "2025-11-28T16:31:05.219Z", + "repository": "https://github.com/aiueo13/tauri-plugin-android-fs", + "npm": "https://www.npmjs.com/package/tauri-plugin-android-fs-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-fs-pro-api", + "description": "Extended with additional methods for files and directories.", + "version": "2.4.0", + "date": "2025-04-15T03:26:01.097Z", + "repository": "https://github.com/ayangweb/tauri-plugin-fs-pro", + "npm": "https://www.npmjs.com/package/tauri-plugin-fs-pro-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@vnidrop/tauri-plugin-share", + "description": "A Tauri plugin for sharing content via the system's share dialog.", + "version": "0.2.0", + "date": "2025-08-08T20:04:38.075Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40vnidrop%2Ftauri-plugin-share", + "github_stars": null + }, + { + "source": "npm", + "name": "@choochmeque/tauri-plugin-notifications-api", + "description": "A Tauri v2 plugin for sending notifications on desktop and mobile platforms with support for system notifications and push delivery via FCM and APNs.", + "version": "0.3.1", + "date": "2025-12-01T19:37:13.903Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-notifications", + "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-notifications-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-shellx-api", + "description": "Unlocked Tauri Shell Plugin", + "version": "2.0.16", + "date": "2025-03-03T00:48:03.758Z", + "repository": "https://github.com/HuakunShen/tauri-plugin-shellx", + "npm": "https://www.npmjs.com/package/tauri-plugin-shellx-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@choochmeque/tauri-plugin-google-auth-api", + "description": "A Tauri v2 plugin that enables Google OAuth authentication", + "version": "0.3.4", + "date": "2025-11-20T21:17:30.063Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-google-auth", + "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-google-auth-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@choochmeque/tauri-plugin-iap-api", + "description": "A Tauri v2 plugin that enables In-App Purchases (IAP)", + "version": "0.5.0", + "date": "2025-12-01T12:26:04.560Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-iap", + "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-iap-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@choochmeque/tauri-plugin-biometry-api", + "description": "A Tauri v2 plugin for biometric authentication (Touch ID, Face ID, fingerprint) on Android, macOS, iOS and Windows.", + "version": "0.2.5", + "date": "2025-11-20T21:38:58.924Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-biometry", + "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-biometry-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@auvo/tauri-plugin-crypto-hw-api", + "description": "Android/iOS StrongBox/Secure Enclave Bindings+Wrapper for Tauri.", + "version": "0.1.0", + "date": "2025-05-12T05:38:48.331Z", + "repository": "https://github.com/auvoid/tauri-plugin-crypto-hw", + "npm": "https://www.npmjs.com/package/%40auvo%2Ftauri-plugin-crypto-hw-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@kuyoonjo/tauri-plugin-serialport-api", + "description": "A tauri plugin developed based on Serialport.", + "version": "0.1.3", + "date": "2024-05-07T06:05:52.291Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-serialport-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-network-api", + "description": "Network Plugin for Tauri Apps", + "version": "2.0.5", + "date": "2025-01-05T21:28:29.734Z", + "repository": "https://github.com/HuakunShen/tauri-plugin-network", + "npm": "https://www.npmjs.com/package/tauri-plugin-network-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-webauthn-api", + "description": "A Tauri plugin for WebAuthn API", + "version": "0.2.0", + "date": "2025-05-16T19:12:33.368Z", + "repository": "https://github.com/profiidev/tauri-plugin-webauthn", + "npm": "https://www.npmjs.com/package/tauri-plugin-webauthn-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-gamepad-api", + "description": "A plugin for Tauri that provides a polyfill for Gamepad Web API that works on most common platforms.", + "version": "0.0.5", + "date": "2024-12-06T21:27:07.643Z", + "repository": "https://github.com/eugenehp/tauri-plugin-gamepad", + "npm": "https://www.npmjs.com/package/tauri-plugin-gamepad-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@buildyourwebapp/tauri-plugin-sharesheet", + "description": "Share content to other apps via the Android Sharesheet or iOS Share Pane.", + "version": "0.0.1", + "date": "2024-08-29T19:21:20.054Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40buildyourwebapp%2Ftauri-plugin-sharesheet", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-windows-version-api", + "description": "Get the version number of the current Windows OS.", + "version": "2.0.0", + "date": "2025-04-09T08:07:46.479Z", + "repository": "https://github.com/ayangweb/tauri-plugin-windows-version", + "npm": "https://www.npmjs.com/package/tauri-plugin-windows-version-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@inkibra/tauri-plugin-ota", + "description": "Tauri Plugin for Over-the-Air updates for iOS applications", + "version": "0.1.3", + "date": "2025-08-25T23:49:53.229Z", + "repository": "https://github.com/inkibra/tauri-plugins", + "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-ota", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-app-events-api", + "description": "A plugin for tauri@v2 to listen some events on iOS and Android.", + "version": "0.2.0", + "date": "2025-02-17T19:22:20.702Z", + "repository": "https://github.com/wtto00/tauri-plugin-app-events", + "npm": "https://www.npmjs.com/package/tauri-plugin-app-events-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@kuyoonjo/tauri-plugin-theme-api", + "description": "Dynamically change Tauri App theme", + "version": "0.2.0", + "date": "2024-05-11T03:05:02.947Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-theme-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-duck-api", + "description": "", + "version": "0.1.1", + "date": "2025-08-11T11:55:24.178Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-duck-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-billing-api", + "description": "A Tauri plugin to access the Android billing SDK", + "version": "0.1.4", + "date": "2025-09-04T19:18:12.311Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-billing-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@choochmeque/tauri-plugin-sharekit-api", + "description": "A Tauri v2 plugin that enables sharing content with native sharing interfaces on Android, iOS, macOS and Windows.", + "version": "0.2.4", + "date": "2025-11-20T21:31:35.760Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-sharekit", + "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-sharekit-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@kuyoonjo/tauri-plugin-udp", + "description": "## Install", + "version": "0.1.1", + "date": "2024-06-04T06:55:00.023Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-udp", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-cache-api", + "description": "Comprehensive disk and memory caching solution for Tauri applications. Features dynamic TTL management, intelligent data compression, automatic cleanup, and statistics monitoring. Delivers high-performance data access, optimized storage, and improved user", + "version": "0.1.6", + "date": "2025-12-09T04:08:28.168Z", + "repository": "https://github.com/Taiizor/tauri-plugin-cache", + "npm": "https://www.npmjs.com/package/tauri-plugin-cache-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-keepawake-api", + "description": "", + "version": "0.1.0", + "date": "2024-12-23T11:49:08.488Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-keepawake-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@saurl/tauri-plugin-safe-area-insets-css-api", + "description": "", + "version": "0.1.0", + "date": "2025-08-21T15:23:23.480Z", + "repository": "https://github.com/saurL/tauri-plugin-safe-area-insets-css", + "npm": "https://www.npmjs.com/package/%40saurl%2Ftauri-plugin-safe-area-insets-css-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-view-api", + "description": "A mobile plugin for Tauri for viewing and sharing files.", + "version": "0.0.5", + "date": "2024-11-16T18:57:19.706Z", + "repository": "https://github.com/ecmel/tauri-plugin-view", + "npm": "https://www.npmjs.com/package/tauri-plugin-view-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-admob-api", + "description": "> For now this is just a copy of [admob-plus](https://github.com/admob-plus/admob-plus) in the future I would like to refactor the code to be more Tauri friendly.", + "version": "0.0.4", + "date": "2025-03-23T11:21:31.748Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-admob-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-deno-api", + "description": "Javascript package for tauri plugin deno.", + "version": "0.2.0", + "date": "2025-03-16T20:18:56.514Z", + "repository": "https://github.com/marcomq/tauri-plugin-deno", + "npm": "https://www.npmjs.com/package/tauri-plugin-deno-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-clipboard-x-api", + "description": "Supports clipboard change listening and enables reading and writing of various clipboard formats (plain text, rich text, html, image, and files).", + "version": "2.0.1", + "date": "2025-04-23T15:32:46.022Z", + "repository": "https://github.com/ayangweb/tauri-plugin-clipboard-x", + "npm": "https://www.npmjs.com/package/tauri-plugin-clipboard-x-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-graphql-urql", + "description": "A plugin for Tauri that enables type-safe IPC through GraphQL.", + "version": "2.0.3", + "date": "2023-01-10T12:56:46.577Z", + "repository": "https://github.com/JonasKruckenberg/tauri-plugin-graphql", + "npm": "https://www.npmjs.com/package/tauri-plugin-graphql-urql", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-use-ffmpeg-api", + "description": "A Tauri plugin for using FFmpeg without pre-installation", + "version": "0.1.0", + "date": "2025-10-24T06:06:30.585Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-use-ffmpeg-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-mic-recorder-api", + "description": "Supports recording audio using a microphone and saving the recorded data as a file.", + "version": "2.0.0", + "date": "2025-03-18T06:57:36.674Z", + "repository": "https://github.com/ayangweb/tauri-plugin-mic-recorder", + "npm": "https://www.npmjs.com/package/tauri-plugin-mic-recorder-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-sumup-api", + "description": "JavaScript bindings for tauri-plugin-sumup - SumUp payment processing for Tauri mobile apps", + "version": "0.1.2", + "date": "2025-10-02T21:57:38.597Z", + "repository": "https://github.com/2221ch/tauri-plugin-sumup", + "npm": "https://www.npmjs.com/package/tauri-plugin-sumup-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-app-control-api", + "description": "JS/TS API for Tauri App Control plugin (Android lifecycle).", + "version": "0.1.1", + "date": "2025-05-29T11:43:02.664Z", + "repository": "https://github.com/your-username/tauri-plugin-app-control", + "npm": "https://www.npmjs.com/package/tauri-plugin-app-control-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@cakioe/tauri-plugin-board", + "description": "This is a vending machine development board of kits for Tauri, utilizing Java or Kotlin for development.", + "version": "1.7.6", + "date": "2024-10-15T06:51:30.790Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40cakioe%2Ftauri-plugin-board", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-keygen-rs2-api", + "description": "Tauri V2 plugin for Keygen.sh licensing, based on the keygen-rs SDK.", + "version": "0.2.4", + "date": "2025-09-25T04:58:12.947Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-keygen-rs2-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-centrifugo-api", + "description": "Tauri plugin for Centrifugo real-time communication using tokio-centrifuge", + "version": "0.1.2", + "date": "2025-10-11T07:57:52.019Z", + "repository": "https://github.com/s00d/tauri-plugin-centrifugo", + "npm": "https://www.npmjs.com/package/tauri-plugin-centrifugo-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@inkibra/tauri-plugin-auth", + "description": "This plugin provides authentication APIs for Tauri applications, supporting iOS platforms.", + "version": "0.2.5", + "date": "2025-08-25T23:49:52.891Z", + "repository": "https://github.com/inkibra/tauri-plugins", + "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-auth", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-spotlight-api", + "description": "Tauri plugin that provides a MacOS Spotlight-like search functionality for Tauri windows.", + "version": "0.1.2", + "date": "2023-04-01T11:13:25.643Z", + "repository": "https://github.com/zzzze/tauri-plugin-spotlight", + "npm": "https://www.npmjs.com/package/tauri-plugin-spotlight-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@crabnebula/tauri-plugin-drag", + "description": "Start a drag operation out of a Tauri window", + "version": "2.1.0", + "date": "2025-02-24T12:17:27.992Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40crabnebula%2Ftauri-plugin-drag", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-packagemanager-api", + "description": "A Tauri plugin for interfacing with the Android PackageManager API", + "version": "0.2.1", + "date": "2025-04-12T23:11:35.662Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-packagemanager-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@kuyoonjo/tauri-plugin-tcp", + "description": "This plugin only works with Tauri 2.x only.", + "version": "0.1.2", + "date": "2025-07-21T03:26:55.130Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-tcp", + "github_stars": null + }, + { + "source": "npm", + "name": "@impierce/tauri-plugin-keystore", + "description": "Interact with the device-native key storage (Android Keystore, iOS Keychain).", + "version": "2.1.0-alpha.1", + "date": "2025-02-20T09:29:32.893Z", + "repository": "https://github.com/impierce/tauri-plugin-keystore", + "npm": "https://www.npmjs.com/package/%40impierce%2Ftauri-plugin-keystore", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-media-api", + "description": "Advanced system media control integration plugin for Tauri applications with comprehensive playback controls, rich metadata support, and seamless native OS media interface integration across Windows, macOS, and Linux", + "version": "0.1.1", + "date": "2025-09-08T14:03:53.831Z", + "repository": "https://github.com/Taiizor/tauri-plugin-media", + "npm": "https://www.npmjs.com/package/tauri-plugin-media-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-status-bar-color-api", + "description": "A Tauri plugin for set status bar's color.", + "version": "1.0.0", + "date": "2024-07-09T15:29:42.983Z", + "repository": "https://github.com/Cinea4678/tauri-plugin-status-bar-color", + "npm": "https://www.npmjs.com/package/tauri-plugin-status-bar-color-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@cloudworxx/tauri-plugin-mac-rounded-corners", + "description": "Tauri v2 plugin for native macOS rounded corners with customizable Traffic Lights positioning. Auto-repositions after fullscreen. App Store compatible.", + "version": "1.1.1", + "date": "2025-10-02T09:14:53.506Z", + "repository": "https://github.com/cloudworxx/tauri-plugin-mac-rounded-corners", + "npm": "https://www.npmjs.com/package/%40cloudworxx%2Ftauri-plugin-mac-rounded-corners", + "github_stars": null + }, + { + "source": "npm", + "name": "@duttt/tauri-plugin-broadcast-api", + "description": "tauri plugin broadcast api", + "version": "0.2.0", + "date": "2025-09-15T09:01:27.304Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40duttt%2Ftauri-plugin-broadcast-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-macos-haptics-api", + "description": "Utilize the Taptic Engine (TM) on macOS for Tauri v2 apps.", + "version": "1.0.0", + "date": "2024-10-03T08:27:20.709Z", + "repository": "https://github.com/itseeleeya/tauri-plugin-macos-haptics", + "npm": "https://www.npmjs.com/package/tauri-plugin-macos-haptics-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-keygen-rs-api", + "description": "Tauri plugin for Keygen.sh licensing, based on keygen-rs", + "version": "0.2.3", + "date": "2024-12-03T00:24:24.592Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-keygen-rs-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-in-app-browser-api", + "description": "> [!CAUTION] > This was a plugin primarily made for myself. I've made it open-source so that other people could use it, but I'm not willing to document everything. If you do need some help / clarification / changes, you can contact me on Discord / Twitter", + "version": "1.0.0", + "date": "2025-04-21T03:00:24.282Z", + "repository": "https://github.com/Manaf941/tauri-plugin-in_app_browser", + "npm": "https://www.npmjs.com/package/tauri-plugin-in-app-browser-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@redfernelec/tauri-plugin-hid-api", + "description": "Frontend bindings for Tauri HID plugin", + "version": "0.2.2", + "date": "2025-04-22T21:48:49.083Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40redfernelec%2Ftauri-plugin-hid-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@razein97/tauri-plugin-i18n", + "description": "A wrapper around rust_i18n", + "version": "1.0.0", + "date": "2025-11-02T16:49:57.822Z", + "repository": "https://github.com/razein97/tauri-plugin-i18n", + "npm": "https://www.npmjs.com/package/%40razein97%2Ftauri-plugin-i18n", + "github_stars": null + }, + { + "source": "npm", + "name": "@inkibra/tauri-plugin-iap", + "description": "This plugin provides APIs for handling in-app purchases in Tauri applications, supporting iOS platforms.", + "version": "0.2.5", + "date": "2025-08-25T23:49:53.602Z", + "repository": "https://github.com/inkibra/tauri-plugins", + "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-iap", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-python-api", + "description": "Javascript package for tauri 2 python plugin.", + "version": "0.3.4", + "date": "2025-02-11T17:58:18.616Z", + "repository": "https://github.com/marcomq/tauri-plugin-python", + "npm": "https://www.npmjs.com/package/tauri-plugin-python-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-matrix-svelte-api", + "description": "A Tauri plugin that exposes high level Matrix data through Svelte Rune stores", + "version": "0.1.0", + "date": "2025-06-05T08:53:46.956Z", + "repository": "https://github.com/IT-ess/tauri-plugin-matrix-svelte", + "npm": "https://www.npmjs.com/package/tauri-plugin-matrix-svelte-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@voixapp/tauri-plugin-hotkey", + "description": "Plugin allows to receive hotkey press and release events", + "version": "0.1.15", + "date": "2025-03-21T19:28:14.757Z", + "repository": "https://github.com/voixapp/tauri-plugin-hotkey", + "npm": "https://www.npmjs.com/package/%40voixapp%2Ftauri-plugin-hotkey", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-is-simulator-api", + "description": "A simple Tauri plugin to check if the app is running in a simulator.", + "version": "1.0.0", + "date": "2024-12-16T11:12:55.011Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-is-simulator-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-usagestats-api", + "description": "A Tauri plugin to interact with the Android UsageStats API", + "version": "0.1.1", + "date": "2025-04-11T03:32:12.633Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-usagestats-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-pldownloader-api", + "description": "TypeScript client for the Tauri PLDownloader plugin (Android/iOS).", + "version": "1.0.1", + "date": "2025-09-20T04:16:07.042Z", + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader", + "npm": "https://www.npmjs.com/package/tauri-plugin-pldownloader-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-app-exit-api", + "description": "A plugin for tauri@v2 to exit app.", + "version": "0.1.1", + "date": "2024-10-23T17:00:16.983Z", + "repository": "https://github.com/wtto00/tauri-plugin-app-exit", + "npm": "https://www.npmjs.com/package/tauri-plugin-app-exit-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-bluetooth-api", + "description": "JavaScript API for tauri-plugin-bluetooth", + "version": "0.1.1", + "date": "2025-02-19T10:39:33.515Z", + "repository": "https://github.com/26F-Studio/tauri-plugin-bluetooth", + "npm": "https://www.npmjs.com/package/tauri-plugin-bluetooth-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-rusqlite-api", + "description": "Tauri Plugin based on Rusqlite", + "version": "0.4.4", + "date": "2024-04-19T03:59:40.448Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-rusqlite-api", + "github_stars": null + }, + { + "source": "npm", + "name": "@0x330a/tauri-plugin-keystore-api", + "description": "Interact with the device-native key storage (Android Keystore, iOS Keychain). perform ecdh operations for generating symmetric keys", + "version": "2.1.0-alpha.5", + "date": "2025-08-01T05:40:46.697Z", + "repository": "https://github.com/0x330a-public/tauri-plugin-keystore", + "npm": "https://www.npmjs.com/package/%400x330a%2Ftauri-plugin-keystore-api", + "github_stars": null + }, + { + "source": "npm", + "name": "tauri-plugin-sharetarget-api", + "description": "tauri apps: receive share intents on Android", + "version": "0.1.6", + "date": "2024-11-02T19:52:59.963Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-sharetarget-api", + "github_stars": null + } + ] +}