From 921b2efd47845d8042ba9236fe7cc9e793b43d3b Mon Sep 17 00:00:00 2001 From: Ayres Vitor Date: Tue, 9 Dec 2025 13:23:03 -0300 Subject: [PATCH 1/8] stuff script, ci, component, data --- .github/workflows/syncCommunityResources.yml | 50 + package.json | 1 + packages/community-resources/.prettierrc | 22 + packages/community-resources/build.ts | 218 + packages/community-resources/package.json | 19 + packages/community-resources/tsconfig.json | 10 + pnpm-lock.yaml | 12 + pnpm-workspace.yaml | 1 + src/components/CommunityResources.astro | 372 ++ .../docs/plugin/index-external-resources.mdx | 12 + src/content/docs/plugin/index.mdx | 5 + src/data/communityResources.json | 3984 +++++++++++++++++ 12 files changed, 4706 insertions(+) create mode 100644 .github/workflows/syncCommunityResources.yml create mode 100644 packages/community-resources/.prettierrc create mode 100644 packages/community-resources/build.ts create mode 100644 packages/community-resources/package.json create mode 100644 packages/community-resources/tsconfig.json create mode 100644 src/components/CommunityResources.astro create mode 100644 src/content/docs/plugin/index-external-resources.mdx create mode 100644 src/data/communityResources.json diff --git a/.github/workflows/syncCommunityResources.yml b/.github/workflows/syncCommunityResources.yml new file mode 100644 index 0000000000..31ec21aab9 --- /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 0303dde0ce..711a074b20 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 0000000000..3ea048482e --- /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 0000000000..c13c23d1ca --- /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 0000000000..d6313f370e --- /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 0000000000..f5108b4174 --- /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 0e7ff95d61..66a0fbbf34 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 e700754dac..68f400582c 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 0000000000..060cbeda22 --- /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 0000000000..e5b9f0aec0 --- /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 3a35085223..11561e82b7 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 0000000000..a4b22e5a0c --- /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 + } + ] +} From 8cb60bcc1a1b82ae147297db4e48a980e90bb685 Mon Sep 17 00:00:00 2001 From: Ayres Vitor Date: Tue, 9 Dec 2025 14:54:13 -0300 Subject: [PATCH 2/8] cleanup --- packages/community-resources/build.ts | 43 +- src/components/CommunityResources.astro | 58 +- .../docs/plugin/index-external-resources.mdx | 9 + src/data/communityResources.json | 5344 ++++++++--------- 4 files changed, 2545 insertions(+), 2909 deletions(-) diff --git a/packages/community-resources/build.ts b/packages/community-resources/build.ts index c13c23d1ca..340c314ba4 100644 --- a/packages/community-resources/build.ts +++ b/packages/community-resources/build.ts @@ -7,9 +7,6 @@ const OUTPUT_FILE = path.resolve(__dirname, '../../src/data/communityResources.j 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)); @@ -17,7 +14,6 @@ function cleanRepoUrl(url: string) { if (!url) { return null; } - // hmm return url.replace(/^git\+/, '').replace(/\.git$/, ''); } @@ -28,7 +24,7 @@ async function fetchJson(url: string, headers?: Headers) { if (!headers.has('User-Agent')) { headers.set( 'User-Agent', - 'tauri-docs-plugins-discover (https://github.com/tauri-apps/tauri-docs - @vasfvitor)' + 'tauri-docs-plugins-discover (https://github.com/tauri-apps/tauri-docs)' ); } @@ -39,6 +35,7 @@ async function fetchJson(url: string, headers?: Headers) { return res.json(); } +// https://crates.io/data-access async function fetchCrates() { const results = []; let page = 1; @@ -58,7 +55,7 @@ async function fetchCrates() { name: c.name, description: c.description || '', version: c.max_version || c.newest_version || '', - downloads: c.downloads || 0, + created_at: c.created_at || '', repository: cleanRepoUrl(c.repository || c.homepage || ''), license: c.license || '', homepage: c.homepage || '', @@ -78,14 +75,13 @@ interface ResultsItem { description: string; version: string; version_npm?: string; - date?: string; + created_at?: string; repository: string | null; npm?: string; crates_io?: string; - downloads?: number; - github_stars?: number | null; } +// https://docs.npmjs.com/policies/open-source-terms async function fetchNpm() { const results: ResultsItem[] = []; const size = 250; @@ -107,7 +103,7 @@ async function fetchNpm() { name, description: p.description || '', version: p.version || '', - date: p.date || '', + created_at: p.date || '', repository: cleanRepoUrl(repo || p.links?.homepage || ''), npm: `https://www.npmjs.com/package/${encodeURIComponent(name)}`, }); @@ -178,28 +174,11 @@ async function run() { } } - // 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 items = Array.from(map.values()).sort((a, b) => { + const dateA = a.created_at ? new Date(a.created_at).getTime() : 0; + const dateB = b.created_at ? new Date(b.created_at).getTime() : 0; + return dateB - dateA; + }); const outputData = { generated: new Date().toISOString(), diff --git a/src/components/CommunityResources.astro b/src/components/CommunityResources.astro index 060cbeda22..b0814ae607 100644 --- a/src/components/CommunityResources.astro +++ b/src/components/CommunityResources.astro @@ -1,7 +1,10 @@ --- import communityResourcesData from '../data/communityResources.json'; +import { Icon } from '@astrojs/starlight/components'; const { resources, count, generated } = communityResourcesData; + +const filteredResources = resources.filter((item) => !item.repository?.includes('tauri-apps')); --- @@ -26,14 +29,15 @@ const { resources, count, generated } = communityResourcesData;
- Showing {count} of {count} community plugins + Showing {filteredResources.length} of {filteredResources.length} community plugins
@@ -43,23 +47,19 @@ const { resources, count, generated } = communityResourcesData; Name & Links Description - Crate Version - Crate Downloads - NPM Version - GitHub Stars + Created { - resources.map((item) => ( + filteredResources.map((item) => ( {item.description} - {item.version || '-'} - {item.downloads ? item.downloads.toLocaleString() : '-'} - {item.version_npm || '-'} - {item.github_stars ?? '-'} + + {item.created_at + ? new Date(item.created_at).toLocaleDateString('en-US', { + year: 'numeric', + month: 'short', + day: 'numeric', + }) + : '-'} + )) } @@ -335,15 +332,12 @@ const { resources, count, generated } = communityResourcesData; const sortBy = this.sortSelect.value; visibleRows.sort((a, b) => { - if (sortBy === 'stars') { - return (parseInt(b.dataset.stars || '0') || 0) - (parseInt(a.dataset.stars || '0') || 0); + if (sortBy === 'date') { + const dateA = a.dataset.created ? new Date(a.dataset.created).getTime() : 0; + const dateB = b.dataset.created ? new Date(b.dataset.created).getTime() : 0; + return dateB - dateA; } else if (sortBy === 'name') { return (a.dataset.name || '').localeCompare(b.dataset.name || ''); - } else if (sortBy === 'downloads') { - return ( - (parseInt(b.dataset.downloads || '0') || 0) - - (parseInt(a.dataset.downloads || '0') || 0) - ); } return 0; }); diff --git a/src/content/docs/plugin/index-external-resources.mdx b/src/content/docs/plugin/index-external-resources.mdx index e5b9f0aec0..7605b67722 100644 --- a/src/content/docs/plugin/index-external-resources.mdx +++ b/src/content/docs/plugin/index-external-resources.mdx @@ -9,4 +9,13 @@ template: splash import CommunityResources from '@components/CommunityResources.astro'; +:::danger + +These plugins are extracted from [crates.io](https://crates.io/) and [npmjs.com](https://www.npmjs.com/). Be advised that these are +external resources and are neither maintained nor endorsed by the Tauri Team, always exercise caution. + +::: + +--- + diff --git a/src/data/communityResources.json b/src/data/communityResources.json index a4b22e5a0c..73b52ffa08 100644 --- a/src/data/communityResources.json +++ b/src/data/communityResources.json @@ -1,3984 +1,3638 @@ { - "generated": "2025-12-09T16:28:34.756Z", + "generated": "2025-12-09T17:51:53.088Z", "count": 346, "resources": [ { "source": "crates", - "name": "tauri-plugin-pty", - "description": "Pseudo Terminal (PTY) plugin for Tauri", - "version": "0.1.1", - "downloads": 14894, - "repository": null, + "name": "tauri-plugin-frame", + "description": "Opnionated window decoration controls for Tauri apps.", + "version": "1.1.1", + "created_at": "2025-12-09T16:02:44.671144Z", + "repository": "https://github.com/clarifei/tauri-plugin-frame", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-pty", - "github_stars": null + "homepage": "https://github.com/clarifei/tauri-plugin-frame", + "crates_io": "https://crates.io/crates/tauri-plugin-frame" }, { - "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": "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", + "created_at": "2025-12-09T04:08:28.168Z", + "repository": "https://github.com/Taiizor/tauri-plugin-cache", + "npm": "https://www.npmjs.com/package/tauri-plugin-cache-api" }, { "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", + "name": "tauri-plugin-video-thumbnail", + "description": "Generate video thumbnails from URLs or local paths for Tauri applications", + "version": "0.1.0", + "created_at": "2025-12-08T14:38:17.330665Z", + "repository": "https://github.com/dickwu/tauri-plugin-video-thumbnail", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-axum", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-video-thumbnail" }, { - "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": "npm", + "name": "tauri-plugin-askit-api", + "description": "Tauri plugin for Agent Stream Kit", + "version": "0.5.1", + "created_at": "2025-12-07T14:10:43.942Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-askit-api" }, { - "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": "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", + "created_at": "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" }, { - "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": "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", + "created_at": "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" }, { - "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": "npm", + "name": "@proj-airi/tauri-plugin-mcp", + "description": "A Tauri plugin for interacting with MCP servers.", + "version": "0.8.0-alpha.8", + "created_at": "2025-12-01T19:02:36.221Z", + "repository": "https://github.com/moeru-ai/airi", + "npm": "https://www.npmjs.com/package/%40proj-airi%2Ftauri-plugin-mcp" }, { - "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": "npm", + "name": "@choochmeque/tauri-plugin-iap-api", + "description": "A Tauri v2 plugin that enables In-App Purchases (IAP)", + "version": "0.5.0", + "created_at": "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" }, { - "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": "npm", + "name": "tauri-plugin-android-fs-api", + "description": "Android file system API for Tauri.", + "version": "23.0.1", + "created_at": "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" }, { - "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": "npm", + "name": "tauri-plugin-broadcast-api", + "description": "Tauri plugin for broadcast", + "version": "0.3.0", + "created_at": "2025-11-28T02:33:51.750Z", + "repository": "https://github.com/dote27/tauri-plugin-broadcast", + "npm": "https://www.npmjs.com/package/tauri-plugin-broadcast-api" }, { "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", + "name": "tauri-plugin-mcp-bridge", + "description": "MCP Bridge plugin for Tauri - enables IPC monitoring and backend inspection", + "version": "0.4.0", + "created_at": "2025-11-27T04:18:49.188220Z", + "repository": "https://github.com/hypothesi/mcp-server-tauri", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-mic-recorder", - "github_stars": null + "homepage": "https://github.com/hypothesi/mcp-server-tauri", + "crates_io": "https://crates.io/crates/tauri-plugin-mcp-bridge" }, { "source": "crates", - "name": "tauri-plugin-midi", - "description": "A WebMIDI-compatible plugin for Tauri", + "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": 5405, - "repository": "https://github.com/specta-rs/tauri-plugin-midi", + "created_at": "2025-11-27T03:23:06.098121Z", + "repository": "https://github.com/1600822305/tauri-plugin-advanced-file-manager", "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 + "crates_io": "https://crates.io/crates/tauri-plugin-advanced-file-manager" }, { "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", + "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", + "created_at": "2025-11-26T06:05:46.000104Z", + "repository": "https://github.com/1600822305/tauri-plugin-edge-to-edge", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-penetrable", - "github_stars": null + "homepage": "https://github.com/1600822305/tauri-plugin-edge-to-edge", + "crates_io": "https://crates.io/crates/tauri-plugin-edge-to-edge" }, { - "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": "npm", + "name": "tauri-plugin-netwait-api", + "description": "A Tauri plugin for network status monitoring and waiting.", + "version": "0.1.0", + "created_at": "2025-11-25T13:25:05.126Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-netwait-api" }, { "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/", + "name": "tauri-plugin-netwait", + "description": "A Tauri plugin for network status monitoring and waiting.", + "version": "0.2.0", + "created_at": "2025-11-25T13:24:30.208175Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-trafficlights-positioner", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-netwait" }, { - "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": "npm", + "name": "tauri-plugin-libmpv-api", + "description": "A Tauri plugin for embedding the mpv player in your app via libmpv.", + "version": "0.3.2", + "created_at": "2025-11-24T04:33:04.510Z", + "repository": "https://github.com/nini22P/tauri-plugin-libmpv", + "npm": "https://www.npmjs.com/package/tauri-plugin-libmpv-api" }, { - "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": "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", + "created_at": "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" }, { - "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": "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", + "created_at": "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" }, { - "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": "npm", + "name": "@choochmeque/tauri-plugin-google-auth-api", + "description": "A Tauri v2 plugin that enables Google OAuth authentication", + "version": "0.3.4", + "created_at": "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" }, { - "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": "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", + "created_at": "2025-11-20T01:40:23.023Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-sse-api" }, { - "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": "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", + "created_at": "2025-11-18T12:39:29.728Z", + "repository": "https://github.com/nini22P/tauri-plugin-mpv", + "npm": "https://www.npmjs.com/package/tauri-plugin-mpv-api" }, { "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", + "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", + "created_at": "2025-11-18T05:00:35.125413Z", + "repository": "https://github.com/yigitkonur/tauri-plugin-macos-input-monitor", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-clipboard-x", - "github_stars": null + "homepage": "https://github.com/yigitkonur/tauri-plugin-macos-input-monitor", + "crates_io": "https://crates.io/crates/tauri-plugin-macos-input-monitor" }, { "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", + "name": "tauri-plugin-music-notification-api", + "description": "A Tauri plugin for music notifications", + "version": "0.2.0", + "created_at": "2025-11-15T03:59:59.823260Z", + "repository": "https://github.com/VMASPAD/tauri-plugin-music-notification", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-system-fonts", - "github_stars": null + "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" }, { - "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": "npm", + "name": "@crabnebula/tauri-plugin-better-auth-license", + "description": "Tauri plugin for license-based authentication and secure device validation.", + "version": "0.0.9", + "created_at": "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" }, { "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", + "name": "tauri-plugin-printer-wkhtml-bin", + "description": "Tauri plugin for printer with embedded wkhtmltopdf for Windows", + "version": "0.1.3", + "created_at": "2025-11-13T17:00:15.860479Z", + "repository": "https://github.com/FrancoJFerreyra/tauri-plugin-printer", "license": "", - "homepage": "https://github.com/Cinea4678/tauri-plugin-accept-cookie", - "crates_io": "https://crates.io/crates/tauri-plugin-accept-cookie", - "github_stars": null + "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" + }, + { + "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", + "created_at": "2025-11-11T14:48:07.052Z", + "repository": "https://github.com/razein97/tauri-plugin-rusqlite2", + "npm": "https://www.npmjs.com/package/%40razein97%2Ftauri-plugin-rusqlite2" }, { "source": "crates", - "name": "tauri-plugin-admob", - "description": "Tauri Plugin admob", - "version": "0.0.4", - "downloads": 788, + "name": "tauri-plugin-ntb", + "description": "A Tauri plugin for custom title bars", + "version": "1.0.0", + "created_at": "2025-11-05T17:07:00.977878Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-admob", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-ntb" }, { "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", + "name": "tauri-plugin-better-auth-license", + "description": "Tauri plugin for license-based authentication and secure device validation.", + "version": "0.0.12", + "created_at": "2025-11-05T16:25:16.720958Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-advanced-file-manager", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-better-auth-license" }, { - "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": "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", + "created_at": "2025-11-05T12:27:34.148Z", + "repository": "https://github.com/s00d/tauri-plugin-serialplugin", + "npm": "https://www.npmjs.com/package/tauri-plugin-serialplugin-api" }, { "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", + "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", + "created_at": "2025-11-03T01:13:43.739753Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-android-fs", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-sse" }, { "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", + "name": "tauri-plugin-i18n", + "description": "Internationalization plugin using rust_i18n for tauri apps.", + "version": "1.0.0", + "created_at": "2025-11-02T16:51:30.610510Z", + "repository": "https://github.com/razein97/tauri-plugin-i18n", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-android-package-install", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-i18n" + }, + { + "source": "npm", + "name": "@razein97/tauri-plugin-i18n", + "description": "A wrapper around rust_i18n", + "version": "1.0.0", + "created_at": "2025-11-02T16:49:57.822Z", + "repository": "https://github.com/razein97/tauri-plugin-i18n", + "npm": "https://www.npmjs.com/package/%40razein97%2Ftauri-plugin-i18n" }, { "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", + "name": "tauri-plugin-ffmpeg", + "description": "FFmpeg plugin for Tauri 2: run ffmpeg/ffprobe with progress on desktop/mobile", + "version": "0.1.0", + "created_at": "2025-10-29T15:06:45.557902Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-android-prevent-screen-capture", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-ffmpeg" + }, + { + "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", + "created_at": "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" }, { "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", + "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", + "created_at": "2025-10-27T00:42:03.117485Z", + "repository": "https://github.com/delorenj/tauri-plugin-mcp", "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 + "homepage": "https://delorenj.github.io", + "crates_io": "https://crates.io/crates/tauri-plugin-mcp-gui" }, { "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, + "name": "tauri-plugin-askit", + "description": "Tauri plugin for Agent Stream Kit", + "version": "0.5.1", + "created_at": "2025-10-26T02:03:50.433756Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-app", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-askit" + }, + { + "source": "npm", + "name": "tauri-plugin-use-ffmpeg-api", + "description": "A Tauri plugin for using FFmpeg without pre-installation", + "version": "0.1.0", + "created_at": "2025-10-24T06:06:30.585Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-use-ffmpeg-api" }, { "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", + "name": "tauri-plugin-use-ffmpeg", + "description": "A Tauri plugin for using FFmpeg without pre-installation", + "version": "0.1.0", + "created_at": "2025-10-24T05:31:19.192795Z", + "repository": "https://github.com/lin52025iq/tauri-plugin-use-ffmpeg", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-app-events", - "github_stars": null + "homepage": "https://github.com/lin52025iq/tauri-plugin-use-ffmpeg", + "crates_io": "https://crates.io/crates/tauri-plugin-use-ffmpeg" }, { "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", + "name": "tauri-plugin-system-fonts", + "description": "Support getting all fonts installed on your system.", + "version": "2.0.2", + "created_at": "2025-10-20T17:28:49.883878Z", + "repository": "https://github.com/ayangweb/tauri-plugin-system-fonts", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-app-exit", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-system-fonts" + }, + { + "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", + "created_at": "2025-10-17T00:14:50.947Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-videoplayer-api" }, { "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", + "name": "tauri-plugin-clerk", + "description": "An unofficial Tauri SDK for Clerk", + "version": "0.1.0", + "created_at": "2025-10-16T22:45:13.831476Z", + "repository": "https://github.com/Nipsuli/tauri-plugin-clerk/", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-appearance", - "github_stars": null + "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" }, { "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/", + "name": "tauri-plugin-videoplayer", + "description": "Fullscreen native video player for tauri", + "version": "0.1.6", + "created_at": "2025-10-12T18:57:44.761173Z", + "repository": "https://github.com/YeonV/tauri-plugin-videoplayer", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-apple-camera", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-videoplayer" }, { "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", + "name": "tauri-plugin-medialibrary", + "description": "A tauri plugin to access the systems media library (e.g. the android medialibrary)", + "version": "0.13.0", + "created_at": "2025-10-11T08:36:38.024383Z", + "repository": "https://github.com/universalappfactory/tauri-plugin-medialibrary", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-apple-music-kit", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-medialibrary" + }, + { + "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", + "created_at": "2025-10-11T07:59:07.838Z", + "repository": "https://github.com/universalappfactory/tauri-plugin-medialibrary", + "npm": "https://www.npmjs.com/package/%40universalappfactory%2Ftauri-plugin-medialibrary" + }, + { + "source": "npm", + "name": "tauri-plugin-centrifugo-api", + "description": "Tauri plugin for Centrifugo real-time communication using tokio-centrifuge", + "version": "0.1.2", + "created_at": "2025-10-11T07:57:52.019Z", + "repository": "https://github.com/s00d/tauri-plugin-centrifugo", + "npm": "https://www.npmjs.com/package/tauri-plugin-centrifugo-api" }, { "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", + "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", + "created_at": "2025-10-07T15:18:41.118545Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-notifications", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-aptabase", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-notifications" }, { "source": "crates", - "name": "tauri-plugin-askit", - "description": "Tauri plugin for Agent Stream Kit", - "version": "0.5.1", - "downloads": 341, - "repository": null, + "name": "tauri-plugin-libmpv-sys", + "description": "Raw FFI bindings for libmpv", + "version": "0.0.0", + "created_at": "2025-10-03T06:11:17.429114Z", + "repository": "https://github.com/nini22P/tauri-plugin-libmpv", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-askit", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-libmpv-sys" }, { - "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.", + "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", - "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 + "created_at": "2025-10-02T21:57:38.597Z", + "repository": "https://github.com/2221ch/tauri-plugin-sumup", + "npm": "https://www.npmjs.com/package/tauri-plugin-sumup-api" }, { "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", + "name": "tauri-plugin-sumup", + "description": "Tauri plugin for SumUp payment processing integration on iOS and Android", + "version": "0.1.3", + "created_at": "2025-10-02T19:32:53.937415Z", + "repository": "https://github.com/2221ch/tauri-plugin-sumup", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-authenticator", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-sumup" }, { - "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": "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", + "created_at": "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" }, { - "source": "crates", - "name": "tauri-plugin-automation", - "description": "Tauri plugin for automation via WebDriver", + "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", - "downloads": 4110, + "created_at": "2025-09-28T14:08:48.241Z", "repository": null, - "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-automation", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-widget-api" }, { "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", + "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", + "created_at": "2025-09-28T13:37:44.634281Z", + "repository": "https://github.com/fwy13/tauri-plugin-widget", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-autostart", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-widget" }, { "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", + "name": "tauri-plugin-libmpv", + "description": "A Tauri plugin for embedding the mpv player in your app via libmpv.", + "version": "0.3.2", + "created_at": "2025-09-27T00:52:11.341654Z", + "repository": "https://github.com/nini22P/tauri-plugin-libmpv", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-barcode-scanner", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-libmpv" }, { - "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, + "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", + "created_at": "2025-09-25T04:58:12.947Z", "repository": null, - "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-better-auth-license", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-keygen-rs2-api" }, { - "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": "npm", + "name": "tauri-plugin-plauth-api", + "description": "Tauri plugin for authentication (PLAUTH) supporting macOS and iOS platforms with ASWebAuthenticationSession", + "version": "1.0.4", + "created_at": "2025-09-24T09:37:42.265Z", + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth", + "npm": "https://www.npmjs.com/package/tauri-plugin-plauth-api" }, { - "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": "npm", + "name": "tauri-plugin-pldownloader-api", + "description": "TypeScript client for the Tauri PLDownloader plugin (Android/iOS).", + "version": "1.0.1", + "created_at": "2025-09-20T04:16:07.042Z", + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader", + "npm": "https://www.npmjs.com/package/tauri-plugin-pldownloader-api" + }, + { + "source": "npm", + "name": "@duttt/tauri-plugin-broadcast-api", + "description": "tauri plugin broadcast api", + "version": "0.2.0", + "created_at": "2025-09-15T09:01:27.304Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40duttt%2Ftauri-plugin-broadcast-api" }, { "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", + "name": "tauri-plugin-broadcast", + "description": "Tauri plugin for broadcast", + "version": "0.3.0", + "created_at": "2025-09-12T07:21:02.250527Z", + "repository": "https://github.com/dote27/tauri-plugin-broadcast", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-biometry", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-broadcast" }, { - "source": "crates", - "name": "tauri-plugin-ble", - "description": "This is an tauri-plugin-ble", + "source": "npm", + "name": "@0x330a/tauri-plugin-p256-signer-api", + "description": "JS Bindings for the tauri-plugin-p256-signer Tauri plugin", "version": "0.1.2", - "downloads": 862, + "created_at": "2025-09-11T12:18:34.710Z", "repository": null, - "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-ble", - "github_stars": null + "npm": "https://www.npmjs.com/package/%400x330a%2Ftauri-plugin-p256-signer-api" }, { "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", + "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", + "created_at": "2025-09-10T10:03:00.968530Z", + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader", "license": "", - "homepage": "https://github.com/MnlPhlp/tauri-plugin-blec", - "crates_io": "https://crates.io/crates/tauri-plugin-blec", - "github_stars": null + "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader", + "crates_io": "https://crates.io/crates/tauri-plugin-pldownloader" + }, + { + "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", + "created_at": "2025-09-08T14:03:53.831Z", + "repository": "https://github.com/Taiizor/tauri-plugin-media", + "npm": "https://www.npmjs.com/package/tauri-plugin-media-api" }, { "source": "crates", - "name": "tauri-plugin-bluetooth", - "description": "Tauri plugin for Bluetooth Low Energy", + "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": 1329, - "repository": "https://github.com/26F-Studio/tauri-plugin-bluetooth", + "created_at": "2025-09-06T20:33:33.371542Z", + "repository": "https://github.com/Taiizor/tauri-plugin-media", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-bluetooth", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-media" }, { "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, + "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", + "created_at": "2025-09-05T17:44:49.261208Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-bluetooth-manager", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-typegen", + "npm": "https://www.npmjs.com/package/tauri-plugin-typegen", + "version_npm": "0.1.5" }, { "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", + "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", + "created_at": "2025-09-05T15:24:44.799122Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-biometry", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-board", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-biometry" }, { - "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": "npm", + "name": "tauri-plugin-posthog-api", + "description": "A Tauri v2 plugin for integrating PostHog analytics - JavaScript/TypeScript API", + "version": "0.2.2", + "created_at": "2025-09-05T01:44:53.378Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-posthog-api" }, { - "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": "npm", + "name": "tauri-plugin-billing-api", + "description": "A Tauri plugin to access the Android billing SDK", + "version": "0.1.4", + "created_at": "2025-09-04T19:18:12.311Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-billing-api" }, { "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", + "name": "tauri-plugin-posthog", + "description": "A Tauri v2 plugin for integrating PostHog analytics into your Tauri applications", + "version": "0.2.4", + "created_at": "2025-09-03T15:47:13.081231Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-cache", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-posthog" }, { "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", + "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", + "created_at": "2025-09-03T12:35:12.651202Z", + "repository": "https://github.com/nini22P/tauri-plugin-mpv", "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 + "crates_io": "https://crates.io/crates/tauri-plugin-mpv" }, { - "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": "npm", + "name": "tauri-plugin-sentry-api", + "description": "Tauri Plugin for Sentry", + "version": "0.5.0", + "created_at": "2025-09-03T11:56:06.706Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-sentry-api" + }, + { + "source": "npm", + "name": "tauri-plugin-pytauri-api", + "description": "js api for crate tauri-plugin-pytauri", + "version": "0.8.0", + "created_at": "2025-09-01T09:14:35.148Z", + "repository": "https://github.com/pytauri/pytauri", + "npm": "https://www.npmjs.com/package/tauri-plugin-pytauri-api" }, { "source": "crates", - "name": "tauri-plugin-clerk", - "description": "An unofficial Tauri SDK for Clerk", + "name": "tauri-plugin-intent", + "description": "Tauri plugin for handling Android and iOS intents.", "version": "0.1.0", - "downloads": 272, - "repository": "https://github.com/Nipsuli/tauri-plugin-clerk/", + "created_at": "2025-09-01T07:01:13.348391Z", + "repository": "https://github.com/modeckrus/tauri-plugin-intent", "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 + "homepage": "https://github.com/modeckrus/tauri-plugin-intent", + "crates_io": "https://crates.io/crates/tauri-plugin-intent" }, { "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", + "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", + "created_at": "2025-08-28T13:35:40.919048Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-sharekit", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-cli", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-sharekit" }, { - "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": "npm", + "name": "@bling-yshs/tauri-plugin-toast", + "description": "A Tauri plugin for showing toast notifications on Android", + "version": "0.0.1", + "created_at": "2025-08-27T06:47:03.259Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40bling-yshs%2Ftauri-plugin-toast" }, { "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", + "name": "tauri-plugin-toast", + "description": "A Tauri plugin for showing toast notifications on Android", + "version": "0.0.2", + "created_at": "2025-08-27T06:17:43.182628Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-clipboard-manager", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-toast" }, { "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", + "name": "tauri-plugin-google-auth", + "description": "A Tauri v2 plugin that enables Google OAuth authentication", + "version": "0.3.4", + "created_at": "2025-08-26T16:03:05.412590Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-google-auth", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-config-manager", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-google-auth" }, { - "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": "npm", + "name": "@mcitem/tauri-plugin-axum", + "description": "A Tauri plugin that allows calling Axum Router endpoints directly.", + "version": "0.7.1", + "created_at": "2025-08-26T07:45:13.961Z", + "repository": "https://github.com/mcitem/tauri-plugin-axum", + "npm": "https://www.npmjs.com/package/%40mcitem%2Ftauri-plugin-axum" }, { - "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": "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", + "created_at": "2025-08-25T23:49:53.602Z", + "repository": "https://github.com/inkibra/tauri-plugins", + "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-iap" }, { - "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": "npm", + "name": "@inkibra/tauri-plugin-ota", + "description": "Tauri Plugin for Over-the-Air updates for iOS applications", + "version": "0.1.3", + "created_at": "2025-08-25T23:49:53.229Z", + "repository": "https://github.com/inkibra/tauri-plugins", + "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-ota" + }, + { + "source": "npm", + "name": "@inkibra/tauri-plugin-auth", + "description": "This plugin provides authentication APIs for Tauri applications, supporting iOS platforms.", + "version": "0.2.5", + "created_at": "2025-08-25T23:49:52.891Z", + "repository": "https://github.com/inkibra/tauri-plugins", + "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-auth" }, { "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", + "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", + "created_at": "2025-08-21T15:53:33.182659Z", + "repository": null, "license": "", - "homepage": "https://github.com/clearlysid/tauri-plugin-decorum", - "crates_io": "https://crates.io/crates/tauri-plugin-decorum", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-safe-area-insets-css" }, { - "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": "npm", + "name": "@saurl/tauri-plugin-safe-area-insets-css-api", + "description": "", + "version": "0.1.0", + "created_at": "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" + }, + { + "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", + "created_at": "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" }, { "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", + "name": "tauri-plugin-bluetooth-manager", + "description": "A Tauri plugin to manage Bluetooth adapters and devices in Linux.", + "version": "2.0.2", + "created_at": "2025-08-19T14:44:29.499968Z", + "repository": null, "license": "", - "homepage": "https://github.com/marcomq/tauri-plugin-deno", - "crates_io": "https://crates.io/crates/tauri-plugin-deno", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-bluetooth-manager" }, { "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", + "name": "tauri-plugin-android-tv-check", + "description": "A Tauri plugin for checking Android TV devices.", + "version": "1.1.1", + "created_at": "2025-08-19T14:00:00.772999Z", + "repository": "https://github.com/smbcloudXYZ/tauri-plugin-android-tv-check", "license": "", - "homepage": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay", - "crates_io": "https://crates.io/crates/tauri-plugin-desktop-underlay", - "github_stars": null + "homepage": "https://github.com/smbcloudXYZ/tauri-plugin-android-tv-check", + "crates_io": "https://crates.io/crates/tauri-plugin-android-tv-check" }, { "source": "crates", - "name": "tauri-plugin-device", - "description": "Tauri plugin for accessing device information", - "version": "1.0.0", - "downloads": 449, + "name": "tauri-plugin-authium", + "description": "Plugin for Tauri as a wrapper for Authium.", + "version": "0.2.2", + "created_at": "2025-08-19T13:45:29.735144Z", "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 + "crates_io": "https://crates.io/crates/tauri-plugin-authium" }, { "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", + "name": "tauri-plugin-fcm-notifications", + "description": "A Tauri plugin for Firebase Cloud Messaging (FCM) notifications", + "version": "0.1.8", + "created_at": "2025-08-18T06:43:21.987196Z", + "repository": "https://github.com/edenstrom/tauri-plugin-fcm-notifications", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-devtools", - "github_stars": null + "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" }, { "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", + "name": "tauri-plugin-plauth", + "description": "Tauri plugin for authentication (PLAUTH) supporting macOS and iOS platforms with ASWebAuthenticationSession", + "version": "1.0.4", + "created_at": "2025-08-15T03:35:05.171161Z", + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-devtools-app", - "github_stars": null + "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth", + "crates_io": "https://crates.io/crates/tauri-plugin-plauth" }, { "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", + "name": "tauri-plugin-axum", + "description": "A Tauri plugin that allows calling Axum Router endpoints directly.", + "version": "0.7.1", + "created_at": "2025-08-14T18:59:26.543142Z", + "repository": "https://github.com/mcitem/tauri-plugin-axum", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-dialog", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-axum" }, { "source": "crates", - "name": "tauri-plugin-drag", - "description": "Start a drag operation out of a Tauri window", - "version": "2.1.0", - "downloads": 24802, + "name": "tauri-plugin-macos-passkey", + "description": "Call macOS Passkey registration/login APIs in Tauri apps with ease!", + "version": "0.1.0", + "created_at": "2025-08-14T03:02:38.769638Z", + "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" + }, + { + "source": "crates", + "name": "tauri-plugin-centrifugo", + "description": "Tauri plugin for Centrifugo real-time communication using tokio-centrifuge", + "version": "0.1.2", + "created_at": "2025-08-13T11:52:25.713309Z", + "repository": "https://github.com/s00d/tauri-plugin-centrifugo", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-centrifugo" + }, + { + "source": "npm", + "name": "tauri-plugin-duck-api", + "description": "", + "version": "0.1.1", + "created_at": "2025-08-11T11:55:24.178Z", "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-duck-api" + }, + { + "source": "crates", + "name": "tauri-plugin-iap", + "description": "A Tauri v2 plugin that enables In-App Purchases (IAP)", + "version": "0.5.0", + "created_at": "2025-08-10T15:02:38.022304Z", + "repository": "https://github.com/Choochmeque/tauri-plugin-iap", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-drag", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-iap" }, { "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, + "name": "tauri-plugin-ios-keyboard", + "description": "Tauri plugin for iOS keyboard event handling and management", + "version": "0.1.1", + "created_at": "2025-08-10T10:41:07.278435Z", + "repository": "https://github.com/pineapp/tauri-plugin-ios-keyboard", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-drag-as-window", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-ios-keyboard" + }, + { + "source": "npm", + "name": "@vnidrop/tauri-plugin-share", + "description": "A Tauri plugin for sharing content via the system's share dialog.", + "version": "0.2.0", + "created_at": "2025-08-08T20:04:38.075Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40vnidrop%2Ftauri-plugin-share" }, { "source": "crates", "name": "tauri-plugin-dragout", "description": "Tauri plugin providing native macOS drag-out (file promise) support", "version": "0.1.1", - "downloads": 884, + "created_at": "2025-08-04T23:03:54.319185Z", "repository": "https://github.com/alexqqqqqq777/tauri-plugin-dragout", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-dragout", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-dragout" }, { "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", + "name": "tauri-plugin-printer-v2", + "description": "Tauri plugin for printing", + "version": "0.2.4", + "created_at": "2025-08-03T03:16:10.123492Z", + "repository": "https://github.com/chen-collab/tauri-plugin-printer", "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 + "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" }, { "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", + "name": "tauri-plugin-vnidrop-share", + "description": "A Tauri plugin for sharing content via the system's share dialog.", + "version": "0.2.0", + "created_at": "2025-08-02T20:52:41.855254Z", + "repository": "https://github.com/vnidrop/plugin-share", "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-vnidrop-share" + }, + { + "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", + "created_at": "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" }, { "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", + "name": "tauri-plugin-rusqlite2", + "description": "Tauri SQLite plugin using rusqlite", + "version": "2.2.5", + "created_at": "2025-07-30T19:53:15.657834Z", + "repository": "https://github.com/razein97/tauri-plugin-rusqlite2", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-fanto", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-rusqlite2" + }, + { + "source": "npm", + "name": "tauri-plugin-apple-music-kit-api", + "description": "Tauri plugin for Apple MusicKit integration - TypeScript API bindings", + "version": "0.2.7", + "created_at": "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" }, { "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", + "name": "tauri-plugin-device", + "description": "Tauri plugin for accessing device information", + "version": "1.0.0", + "created_at": "2025-07-30T15:17:58.053993Z", + "repository": null, "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 + "crates_io": "https://crates.io/crates/tauri-plugin-device", + "npm": "https://www.npmjs.com/package/tauri-plugin-device", + "version_npm": "1.0.0" }, { "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, + "name": "tauri-plugin-secure-storage", + "description": "Tauri plugin for secure storage using the system's keyring.", + "version": "1.4.0", + "created_at": "2025-07-30T14:45:22.754089Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-ffmpeg", - "github_stars": null + "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" }, { "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", + "name": "tauri-plugin-pliap", + "description": "Tauri plugin for in-app purchases and subscriptions supporting desktop and mobile platforms", + "version": "1.0.6", + "created_at": "2025-07-28T15:07:15.748181Z", + "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pliap", "license": "", - "homepage": "https://github.com/clarifei/tauri-plugin-frame", - "crates_io": "https://crates.io/crates/tauri-plugin-frame", - "github_stars": null + "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" }, { "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", + "name": "tauri-plugin-musickit", + "description": "Tauri plugin for Apple MusicKit integration", + "version": "0.2.7", + "created_at": "2025-07-25T07:52:34.491083Z", + "repository": "https://github.com/patrickquinn/tauri-plugin-apple-music-kit", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-fs", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-musickit" }, { - "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": "npm", + "name": "@kuyoonjo/tauri-plugin-tcp", + "description": "This plugin only works with Tauri 2.x only.", + "version": "0.1.2", + "created_at": "2025-07-21T03:26:55.130Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-tcp" }, { "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", + "name": "tauri-plugin-schedule-task", + "description": "A Tauri plugin for scheduling tasks using cron-like syntax.", + "version": "0.1.0", + "created_at": "2025-07-15T18:48:00.333702Z", + "repository": "https://github.com/charlesschaefer/tauri-plugin-schedule-task", "license": "", - "homepage": "https://developermindset.com/tauri-plugin-gamepad/", - "crates_io": "https://crates.io/crates/tauri-plugin-gamepad", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-schedule-task" }, { "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", + "name": "tauri-plugin-indexer", + "description": "a custom indexer (if the version is 1.0.0 then the plugin is ready)", + "version": "0.1.1", + "created_at": "2025-07-12T17:55:38.749175Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-geolocation", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-indexer" }, { "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", + "name": "tauri-plugin-apple-music-kit", + "description": "Tauri plugin for Apple MusicKit integration", + "version": "0.2.5", + "created_at": "2025-07-11T13:44:15.224396Z", + "repository": "https://github.com/patrickquinn/tauri-plugin-apple-music-kit", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-global-shortcut", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-apple-music-kit" }, { "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", + "name": "tauri-plugin-ble", + "description": "This is an tauri-plugin-ble", + "version": "0.1.2", + "created_at": "2025-07-10T03:05:50.674878Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-google-auth", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-ble" }, { "source": "crates", - "name": "tauri-plugin-graphql-next", - "description": "Tauri plugin for GraphQL", - "version": "0.5.0", - "downloads": 2787, + "name": "tauri-plugin-web-transport", + "description": "A Tauri plugin to polyfill WebTransport (on Safari)", + "version": "0.1.0", + "created_at": "2025-07-07T20:33:51.414269Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-graphql-next", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-web-transport" }, { "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", + "name": "tauri-plugin-sqlite-plus", + "description": "Interface with SQL databases.", + "version": "0.0.1", + "created_at": "2025-07-05T05:52:43.143975Z", + "repository": "https://github.com/popo1221/tauri-plugin-sqlite", "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 + "crates_io": "https://crates.io/crates/tauri-plugin-sqlite-plus" }, { "source": "crates", - "name": "tauri-plugin-holochain", - "description": "Ship holochain apps to all platforms", - "version": "0.0.0", - "downloads": 1314, - "repository": null, + "name": "tauri-plugin-vicons", + "description": "Icon API for Tauri plugins (Created for VasakOS)", + "version": "2.0.2", + "created_at": "2025-07-04T16:00:24.396257Z", + "repository": "https://github.com/Vasak-OS/tauri-plugin-vicons/", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-holochain", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-vicons" }, { - "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": "npm", + "name": "tauri-plugin-remote-push-api", + "description": "A Tauri plugin for remote push notifications on iOS and Android.", + "version": "1.0.10", + "created_at": "2025-06-23T16:25:18.065Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-remote-push-api" }, { "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", + "name": "tauri-plugin-remote-push", + "description": "A Tauri plugin for remote push notifications on iOS and Android.", + "version": "1.0.10", + "created_at": "2025-06-22T13:40:09.514248Z", + "repository": "https://github.com/YOUR_USERNAME/tauri-plugin-remote-push", "license": "", - "homepage": "https://github.com/holochain/android-service-runtime", - "crates_io": "https://crates.io/crates/tauri-plugin-holochain-service-client", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-remote-push" }, { "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", + "name": "tauri-plugin-network-manager", + "description": "A Tauri plugin to manage network connections using networkmanager and systemd-networkd.", + "version": "2.0.1", + "created_at": "2025-06-19T18:36:41.396666Z", + "repository": "https://github.com/Vasak-OS/tauri-plugin-network-manager", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-hotkey", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-network-manager" }, { "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", + "name": "tauri-plugin-mobile-share", + "description": "A Package for Sharing Tauri Mobile App Content", + "version": "0.1.2", + "created_at": "2025-06-19T18:05:13.444683Z", + "repository": "https://github.com/tactile-eng/tauri-plugin-mobile-share", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-http", - "github_stars": null + "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" }, { "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", + "name": "tauri-plugin-config-manager", + "description": "A Tauri plugin for managing configuration for Vasak applications.", + "version": "2.0.4", + "created_at": "2025-06-19T17:46:34.969383Z", + "repository": "https://github.com/Vasak-OS/tauri-plugin-config-manager", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-http-ext", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-config-manager" }, { "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", + "name": "tauri-plugin-user-data", + "description": "User Data API for Tauri aplications (Created for VasakOS)", + "version": "2.0.1", + "created_at": "2025-06-19T17:41:47.001789Z", + "repository": "https://github.com/Vasak-OS/tauri-plugin-user-data", "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-user-data" }, { "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", + "name": "tauri-plugin-automation", + "description": "Tauri plugin for automation via WebDriver", + "version": "0.1.1", + "created_at": "2025-06-09T19:56:36.435322Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-i18n", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-automation" }, { "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", + "name": "tauri-plugin-matrix-svelte", + "description": "A Tauri plugin that exposes high level Matrix data through Svelte Rune stores", + "version": "0.2.0", + "created_at": "2025-06-05T09:08:22.383625Z", + "repository": "https://github.com/IT-ess/tauri-plugin-matrix-svelte", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-iap", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-matrix-svelte" }, { - "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": "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", + "created_at": "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" }, { "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, + "name": "tauri-plugin-apple-camera", + "description": "Plugin for tauri to handle camera in the apple devices", + "version": "0.1.0", + "created_at": "2025-06-03T12:12:30.327527Z", + "repository": "https://github.com/Grano22/tauri-plugin-apple_camera/", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-indexer", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-apple-camera" }, { - "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": "npm", + "name": "tauri-plugin-app-control-api", + "description": "JS/TS API for Tauri App Control plugin (Android lifecycle).", + "version": "0.1.1", + "created_at": "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" }, { "source": "crates", - "name": "tauri-plugin-ios-keyboard", - "description": "Tauri plugin for iOS keyboard event handling and management", + "name": "tauri-plugin-app-control", + "description": "A Tauri plugin for Android application lifecycle control (minimize, close, exit, state).", "version": "0.1.1", - "downloads": 885, - "repository": "https://github.com/pineapp/tauri-plugin-ios-keyboard", + "created_at": "2025-05-29T11:02:10.383342Z", + "repository": "https://github.com/your-username/tauri-plugin-app-control", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-ios-keyboard", - "github_stars": null + "homepage": "https://github.com/your-username/tauri-plugin-app-control", + "crates_io": "https://crates.io/crates/tauri-plugin-app-control" }, { "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", + "name": "tauri-plugin-holochain-service", + "description": "Tauri plugin enabling an Android app to run Holochain as a foreground service", + "version": "0.2.3", + "created_at": "2025-05-27T00:08:55.626112Z", + "repository": "https://github.com/holochain/android-service-runtime", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-ios-network-detect", - "github_stars": null + "homepage": "https://github.com/holochain/android-service-runtime", + "crates_io": "https://crates.io/crates/tauri-plugin-holochain-service" }, { "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, + "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", + "created_at": "2025-05-27T00:08:34.161941Z", + "repository": "https://github.com/holochain/android-service-runtime", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-is-simulator", - "github_stars": null + "homepage": "https://github.com/holochain/android-service-runtime", + "crates_io": "https://crates.io/crates/tauri-plugin-holochain-service-client" }, { "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, + "name": "tauri-plugin-torch", + "description": "A simple flash/torch control plugin for Tauri applications.", + "version": "0.1.0", + "created_at": "2025-05-26T07:08:54.468613Z", + "repository": "https://github.com/sosweetham/tauri-plugin-torch", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-is-simulator-temp", - "github_stars": null + "homepage": "https://kodski.com", + "crates_io": "https://crates.io/crates/tauri-plugin-torch" }, { "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", + "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", + "created_at": "2025-05-21T04:17:04.608934Z", + "repository": "https://github.com/Taiizor/tauri-plugin-cache", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-keep-screen-on", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-cache" }, { - "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": "npm", + "name": "tauri-plugin-webauthn-api", + "description": "A Tauri plugin for WebAuthn API", + "version": "0.2.0", + "created_at": "2025-05-16T19:12:33.368Z", + "repository": "https://github.com/profiidev/tauri-plugin-webauthn", + "npm": "https://www.npmjs.com/package/tauri-plugin-webauthn-api" }, { "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", + "name": "tauri-plugin-vue", + "description": "Persistence for Tauri and Vue", + "version": "2.1.0", + "created_at": "2025-05-15T19:12:36.754764Z", + "repository": "https://github.com/ferreira-tb/tauri-store", "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 + "homepage": "https://tb.dev.br/tauri-store/plugin-vue/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-vue" }, { "source": "crates", - "name": "tauri-plugin-keygen", - "description": "A Tauri Plugin for Keygen.sh Licensing", + "name": "tauri-plugin-zubridge", + "description": "A Tauri plugin for state management between frontend and backend", "version": "0.1.0", - "downloads": 1277, - "repository": null, + "created_at": "2025-05-13T10:46:19.819796Z", + "repository": "https://github.com/goosewobbler/zubridge", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-keygen", - "github_stars": null + "homepage": "https://github.com/goosewobbler/zubridge/tree/main/packages/tauri-plugin-zubridge", + "crates_io": "https://crates.io/crates/tauri-plugin-zubridge" }, { "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, + "name": "tauri-plugin-webauthn", + "description": "a Tauri plugin for WebAuthn", + "version": "0.2.0", + "created_at": "2025-05-12T21:59:18.703458Z", + "repository": "https://github.com/Profiidev/tauri-plugin-webauthn", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-keygen-rs", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-webauthn" }, { "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, + "name": "tauri-plugin-crypto-hw", + "description": "Android/iOS StrongBox/Secure Enclave Bindings+Wrapper for Tauri", + "version": "0.1.0", + "created_at": "2025-05-12T05:46:09.171979Z", + "repository": "https://github.com/auvoid/tauri-plugin-crypto-hw", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-keygen-rs2", - "github_stars": null + "homepage": "https://auvo.io", + "crates_io": "https://crates.io/crates/tauri-plugin-crypto-hw" }, { - "source": "crates", - "name": "tauri-plugin-keyring", - "description": "A tauri plugin wrapper for the keyring crate", + "source": "npm", + "name": "@auvo/tauri-plugin-crypto-hw-api", + "description": "Android/iOS StrongBox/Secure Enclave Bindings+Wrapper for Tauri.", "version": "0.1.0", - "downloads": 8767, - "repository": null, - "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-keyring", - "github_stars": null + "created_at": "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" }, { "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", + "name": "tauri-plugin-camera", + "description": "A Tauri plugin for accessing the camera on Android devices.", + "version": "0.1.4", + "created_at": "2025-05-10T13:57:49.393115Z", + "repository": "https://github.com/charlesschaefer/tauri-plugin-camera", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-keystore", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-camera", + "npm": "https://www.npmjs.com/package/tauri-plugin-camera", + "version_npm": "0.1.4" }, { - "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": "npm", + "name": "tauri-plugin-macos-permissions-api", + "description": "Support for checking and requesting macos system permissions.", + "version": "2.3.0", + "created_at": "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" }, { - "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": "npm", + "name": "tauri-plugin-screenshots-api", + "description": "Get screenshots of windows and monitors.", + "version": "2.2.0", + "created_at": "2025-05-01T02:55:08.120Z", + "repository": "https://github.com/ayangweb/tauri-plugin-screenshots", + "npm": "https://www.npmjs.com/package/tauri-plugin-screenshots-api" }, { "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", + "name": "tauri-plugin-mcp", + "description": "A Tauri plugin for interacting with MCP servers", + "version": "0.8.0-alpha.4", + "created_at": "2025-04-30T07:32:56.419032Z", + "repository": "https://github.com/moeru-ai/airi", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-localhost", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-mcp" }, { - "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": "npm", + "name": "tauri-plugin-sqlite-api", + "description": "tauri plugin for sqlite", + "version": "0.1.2", + "created_at": "2025-04-27T03:54:43.775Z", + "repository": "https://github.com/return764/tauri-plugin-sqlite", + "npm": "https://www.npmjs.com/package/tauri-plugin-sqlite-api" }, { "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", + "name": "tauri-plugin-sqlite", + "description": "tauri plugin for sqlite", + "version": "0.1.1", + "created_at": "2025-04-26T09:22:22.065757Z", + "repository": null, "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sqlite" }, { - "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": "npm", + "name": "tauri-plugin-mixpanel-api", + "description": "Tauri plugin API for Mixpanel analytics", + "version": "0.1.0", + "created_at": "2025-04-26T05:49:37.624Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-mixpanel-api" }, { "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", + "name": "tauri-plugin-mixpanel", + "description": "Tauri plugin for Mixpanel analytics", + "version": "0.3.1", + "created_at": "2025-04-26T05:49:15.175957Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-macos-haptics", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-mixpanel" }, { "source": "crates", - "name": "tauri-plugin-macos-input-monitor", - "description": "macOS-only Tauri plugin using CGEventTap FFI to intercept and override system keyboard shortcuts", + "name": "tauri-plugin-buttonkit", + "description": "Tauri plugin for detecting physical button presses on mobile devices", "version": "0.1.0", - "downloads": 20, - "repository": "https://github.com/yigitkonur/tauri-plugin-macos-input-monitor", + "created_at": "2025-04-25T14:21:01.418696Z", + "repository": "https://github.com/dovaldev/tauri-plugin-buttonkit", "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 + "homepage": "https://github.com/dovaldev/tauri-plugin-buttonkit", + "crates_io": "https://crates.io/crates/tauri-plugin-buttonkit" }, { - "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": "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", + "created_at": "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" }, { "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", + "name": "tauri-plugin-hwinfo", + "description": "A cross-platform Tauri plugin to fetch CPU, RAM, GPU, and OS info.", + "version": "0.2.3", + "created_at": "2025-04-22T23:10:04.979370Z", + "repository": "https://github.com/nikolchaa/tauri-plugin-hwinfo", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-matrix-svelte", - "github_stars": null + "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" }, { - "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": "npm", + "name": "@redfernelec/tauri-plugin-hid-api", + "description": "Frontend bindings for Tauri HID plugin", + "version": "0.2.2", + "created_at": "2025-04-22T21:48:49.083Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40redfernelec%2Ftauri-plugin-hid-api" }, { - "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": "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", + "created_at": "2025-04-21T20:04:30.724Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-web-auth-api" }, { "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", + "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", + "created_at": "2025-04-21T20:03:58.943022Z", + "repository": "https://github.com/Manaf941/tauri-plugin-web_auth", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-medialibrary", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-web-auth" }, { "source": "crates", - "name": "tauri-plugin-mixpanel", - "description": "Tauri plugin for Mixpanel analytics", - "version": "0.3.1", - "downloads": 6724, + "name": "tauri-plugin-in-app-browser", + "description": "Tauri plugin to open browsers in the app (SFSafariViewController & Chrome Custom Tabs)", + "version": "1.0.1", + "created_at": "2025-04-21T03:06:50.612657Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-mixpanel", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-in-app-browser" }, { - "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": "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", + "created_at": "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" }, { "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", + "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", + "created_at": "2025-04-19T15:19:08.496442Z", + "repository": "https://github.com/ayangweb/tauri-plugin-clipboard-x", "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 + "crates_io": "https://crates.io/crates/tauri-plugin-clipboard-x" }, { "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", + "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", + "created_at": "2025-04-18T18:18:02.396886Z", + "repository": "https://github.com/dax-dot-gay/tauri-plugin-persistence", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-mpv", - "github_stars": null + "homepage": "https://github.com/dax-dot-gay/tauri-plugin-persistence", + "crates_io": "https://crates.io/crates/tauri-plugin-persistence" }, { "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", + "name": "tauri-plugin-graphql-next", + "description": "Tauri plugin for GraphQL", + "version": "0.5.0", + "created_at": "2025-04-17T10:57:08.220443Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-mqtt", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-graphql-next" }, { - "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": "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", + "created_at": "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" }, { - "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": "npm", + "name": "tauri-plugin-fs-pro-api", + "description": "Extended with additional methods for files and directories.", + "version": "2.4.0", + "created_at": "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" }, { - "source": "crates", - "name": "tauri-plugin-netwait", - "description": "A Tauri plugin for network status monitoring and waiting.", - "version": "0.2.0", - "downloads": 48, + "source": "npm", + "name": "tauri-plugin-packagemanager-api", + "description": "A Tauri plugin for interfacing with the Android PackageManager API", + "version": "0.2.1", + "created_at": "2025-04-12T23:11:35.662Z", "repository": null, - "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-netwait", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-packagemanager-api" }, { "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", + "name": "tauri-plugin-packagemanager", + "description": "A Tauri plugin for interfacing with the Android PackageManager API", + "version": "0.2.2", + "created_at": "2025-04-12T21:20:28.969668Z", + "repository": "https://github.com/jack-weilage/tauri-plugin-packagemanager", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-network", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-packagemanager" + }, + { + "source": "npm", + "name": "tauri-plugin-usagestats-api", + "description": "A Tauri plugin to interact with the Android UsageStats API", + "version": "0.1.1", + "created_at": "2025-04-11T03:32:12.633Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-usagestats-api" }, { "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", + "name": "tauri-plugin-usagestats", + "description": "A Tauri plugin to interact with the Android UsageStats API", + "version": "0.1.1", + "created_at": "2025-04-11T03:24:07.233675Z", + "repository": "https://github.com/jack-weilage/tauri-plugin-usagestats", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-network-manager", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-usagestats" }, { "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", + "name": "tauri-plugin-windows-version", + "description": "Get the version number of the current Windows OS.", + "version": "2.0.0", + "created_at": "2025-04-09T08:09:27.406372Z", + "repository": "https://github.com/ayangweb/tauri-plugin-windows-version", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-nfc", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-windows-version" }, { - "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": "npm", + "name": "tauri-plugin-windows-version-api", + "description": "Get the version number of the current Windows OS.", + "version": "2.0.0", + "created_at": "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" }, { "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", + "name": "tauri-plugin-android-package-install", + "description": "This plugin mainly provides package install on android devices.", + "version": "2.0.2", + "created_at": "2025-04-09T07:14:37.397887Z", + "repository": "https://github.com/kingsword09/tauri-plugins-workspace", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-notification", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-android-package-install" }, { "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", + "name": "tauri-plugin-hid", + "description": "A Tauri plugin to provide access to USB HID devices", + "version": "0.2.2", + "created_at": "2025-04-02T13:32:02.675141Z", + "repository": "https://github.com/RedfernElec/tauri-plugin-hid", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-notifications", - "github_stars": null + "homepage": "https://github.com/RedfernElec/tauri-plugin-hid", + "crates_io": "https://crates.io/crates/tauri-plugin-hid" }, { "source": "crates", - "name": "tauri-plugin-ntb", - "description": "A Tauri plugin for custom title bars", - "version": "1.0.0", - "downloads": 54, - "repository": null, + "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", + "created_at": "2025-03-29T11:53:34.496354Z", + "repository": "https://github.com/kingsword09/tauri-plugins-workspace", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-ntb", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-mobile-onbackpressed-listener" }, { - "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": "npm", + "name": "tauri-plugin-locale-api", + "description": "get the locale of the system.", + "version": "2.0.1", + "created_at": "2025-03-24T15:23:43.564Z", + "repository": "https://github.com/ayangweb/tauri-plugin-locale", + "npm": "https://www.npmjs.com/package/tauri-plugin-locale-api" }, { "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", + "name": "tauri-plugin-locale", + "description": "get the locale of the system.", + "version": "2.0.1", + "created_at": "2025-03-24T15:07:31.890196Z", + "repository": "https://github.com/ayangweb/tauri-plugin-locale", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-oblivion", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-locale" }, { "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, + "name": "tauri-plugin-machine-uid", + "description": "A Tauri plugin for retrieving machine UID", + "version": "0.1.3", + "created_at": "2025-03-24T09:37:09.943346Z", + "repository": "https://github.com/SkipperNDT/tauri-plugin-machine-uid", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-open", - "github_stars": null + "homepage": "https://github.com/SkipperNDT/tauri-plugin-machine-uid", + "crates_io": "https://crates.io/crates/tauri-plugin-machine-uid" }, { "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", + "name": "tauri-plugin-admob", + "description": "Tauri Plugin admob", + "version": "0.0.4", + "created_at": "2025-03-23T11:25:55.542489Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-opener", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-admob" }, { - "source": "crates", - "name": "tauri-plugin-openurl", - "description": "open url in default browser (just like target blank) in Tauri", - "version": "0.1.0", - "downloads": 5886, + "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", + "created_at": "2025-03-23T11:21:31.748Z", "repository": null, - "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-openurl", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-admob-api" }, { "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", + "name": "tauri-plugin-zustand", + "description": "Persistent Zustand stores for Tauri", + "version": "1.1.0", + "created_at": "2025-03-22T23:52:13.729185Z", + "repository": "https://github.com/ferreira-tb/tauri-store", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-os", - "github_stars": null + "homepage": "https://tb.dev.br/tauri-store/plugin-zustand/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-zustand" }, { - "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": "npm", + "name": "@voixapp/tauri-plugin-hotkey", + "description": "Plugin allows to receive hotkey press and release events", + "version": "0.1.15", + "created_at": "2025-03-21T19:28:14.757Z", + "repository": "https://github.com/voixapp/tauri-plugin-hotkey", + "npm": "https://www.npmjs.com/package/%40voixapp%2Ftauri-plugin-hotkey" }, { - "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": "npm", + "name": "tauri-plugin-system-info-api", + "description": "System Info Plugin for Tauri Apps", + "version": "2.0.10", + "created_at": "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" }, { "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", + "name": "tauri-plugin-mic-recorder", + "description": "Supports recording audio using a microphone and saving the recorded data as a file.", + "version": "2.0.0", + "created_at": "2025-03-18T06:58:58.323289Z", + "repository": "https://github.com/ayangweb/tauri-plugin-mic-recorder", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-persisted-scope", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-mic-recorder" }, { - "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": "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", + "created_at": "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" }, { - "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": "npm", + "name": "tauri-plugin-deno-api", + "description": "Javascript package for tauri plugin deno.", + "version": "0.2.0", + "created_at": "2025-03-16T20:18:56.514Z", + "repository": "https://github.com/marcomq/tauri-plugin-deno", + "npm": "https://www.npmjs.com/package/tauri-plugin-deno-api" }, { "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", + "name": "tauri-plugin-hotkey", + "description": "Tauri Plugin to receive hotkey press and release OS events.\n", + "version": "0.1.15", + "created_at": "2025-03-13T15:45:53.279890Z", + "repository": "https://github.com/voixapp/tauri-plugin-hotkey", "license": "", - "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader", - "crates_io": "https://crates.io/crates/tauri-plugin-pldownloader", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-hotkey" }, { "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", + "name": "tauri-plugin-sherpa-ncnn", + "description": "Real-time Speech recognition plugin for Tauri V2 Android.", + "version": "0.1.4", + "created_at": "2025-03-09T09:02:04.408168Z", + "repository": null, "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sherpa-ncnn" }, { "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", + "name": "tauri-plugin-android-prevent-screen-capture", + "description": "Prevent screen capture on Tauri app for Android.", + "version": "1.0.1", + "created_at": "2025-03-06T14:00:57.098339Z", + "repository": "https://github.com/aiueo13/tauri-plugin-android-prevent-screen-capture", "license": "", - "homepage": "https://github.com/houycth/tauri-plugin-polygon", - "crates_io": "https://crates.io/crates/tauri-plugin-polygon", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-android-prevent-screen-capture" }, { - "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": "npm", + "name": "tauri-plugin-shellx-api", + "description": "Unlocked Tauri Shell Plugin", + "version": "2.0.16", + "created_at": "2025-03-03T00:48:03.758Z", + "repository": "https://github.com/HuakunShen/tauri-plugin-shellx", + "npm": "https://www.npmjs.com/package/tauri-plugin-shellx-api" }, { "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, + "name": "tauri-plugin-ios-network-detect", + "description": "A plugin that detects iOS network permission status and automatically displays an authorization.", + "version": "2.0.1", + "created_at": "2025-03-02T02:26:10.009215Z", + "repository": "https://github.com/kingsword09/tauri-plugins-workspace", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-posthog", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-ios-network-detect" }, { "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", + "name": "tauri-plugin-deno", + "description": "A tauri 2 plugin to use javascript code (deno) in the backend.", + "version": "0.2.0", + "created_at": "2025-02-28T15:54:50.861482Z", + "repository": "https://github.com/marcomq/tauri-plugin-deno", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-power-manager", - "github_stars": null + "homepage": "https://github.com/marcomq/tauri-plugin-deno", + "crates_io": "https://crates.io/crates/tauri-plugin-deno" }, { "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", + "name": "tauri-plugin-screenshots", + "description": "Get screenshots of windows and monitors.", + "version": "2.2.0", + "created_at": "2025-02-27T14:39:48.917718Z", + "repository": "https://github.com/ayangweb/tauri-plugin-screenshots", "license": "", - "homepage": "https://github.com/ferreira-tb/tauri-plugin-prevent-default", - "crates_io": "https://crates.io/crates/tauri-plugin-prevent-default", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-screenshots" }, { "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", + "name": "tauri-plugin-android-fix-font-size", + "description": "Fix font size on Tauri app for Android.", + "version": "1.0.2", + "created_at": "2025-02-26T13:45:14.787015Z", + "repository": "https://github.com/aiueo13/tauri-plugin-android-fix-font-size", "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-android-fix-font-size" }, { - "source": "crates", - "name": "tauri-plugin-printer-sujin999", - "description": "Tauri Plugin for printer access (Edit)", - "version": "1.0.15", - "downloads": 5797, + "source": "npm", + "name": "@crabnebula/tauri-plugin-drag", + "description": "Start a drag operation out of a Tauri window", + "version": "2.1.0", + "created_at": "2025-02-24T12:17:27.992Z", "repository": null, - "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-printer-sujin999", - "github_stars": null + "npm": "https://www.npmjs.com/package/%40crabnebula%2Ftauri-plugin-drag" }, { "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", + "name": "tauri-plugin-keystore", + "description": "Interact with the device-native key storage (Android Keystore, iOS Keychain).", + "version": "2.1.0-alpha.1", + "created_at": "2025-02-20T09:40:40.816506Z", + "repository": "https://github.com/impierce/tauri-plugin-keystore", "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 + "crates_io": "https://crates.io/crates/tauri-plugin-keystore" }, { - "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", + "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", + "created_at": "2025-02-20T09:29:32.893Z", + "repository": "https://github.com/impierce/tauri-plugin-keystore", + "npm": "https://www.npmjs.com/package/%40impierce%2Ftauri-plugin-keystore" + }, + { + "source": "npm", + "name": "tauri-plugin-bluetooth-api", + "description": "JavaScript API for tauri-plugin-bluetooth", + "version": "0.1.1", + "created_at": "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" + }, + { + "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", + "created_at": "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" + }, + { + "source": "crates", + "name": "tauri-plugin-bluetooth", + "description": "Tauri plugin for Bluetooth Low Energy", + "version": "0.1.1", + "created_at": "2025-02-16T09:37:30.324111Z", + "repository": "https://github.com/26F-Studio/tauri-plugin-bluetooth", "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 + "crates_io": "https://crates.io/crates/tauri-plugin-bluetooth" }, { "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", + "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", + "created_at": "2025-02-14T16:52:24.515710Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-process", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-tinys-internal-fs" + }, + { + "source": "npm", + "name": "tauri-plugin-fs-ios-api", + "description": "# tauri-plugin-fs-ios", + "version": "0.4.0", + "created_at": "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" }, { "source": "crates", - "name": "tauri-plugin-pytauri", - "description": "PyTauri plugin for Tauri", - "version": "0.8.0", - "downloads": 6867, - "repository": "https://github.com/pytauri/pytauri/", + "name": "tauri-plugin-android-fs", + "description": "Android file system API for Tauri.", + "version": "23.0.1", + "created_at": "2025-02-13T00:31:08.818291Z", + "repository": "https://github.com/aiueo13/tauri-plugin-android-fs", "license": "", - "homepage": "https://github.com/pytauri/pytauri/", - "crates_io": "https://crates.io/crates/tauri-plugin-pytauri", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-android-fs" }, { - "source": "crates", - "name": "tauri-plugin-python", - "description": "A tauri 2 plugin to use python code in the backend.", - "version": "0.3.7", - "downloads": 5544, + "source": "npm", + "name": "tauri-plugin-python-api", + "description": "Javascript package for tauri 2 python plugin.", + "version": "0.3.4", + "created_at": "2025-02-11T17:58:18.616Z", "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 + "npm": "https://www.npmjs.com/package/tauri-plugin-python-api" }, { "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", + "name": "tauri-plugin-billing", + "description": "A Tauri plugin to access the Android billing SDK", + "version": "0.1.4", + "created_at": "2025-02-11T11:32:06.804742Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-remote-push", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-billing" }, { "source": "crates", "name": "tauri-plugin-rspc", "description": "Tauri adapter for rspc", "version": "0.2.2", - "downloads": 2141, + "created_at": "2025-01-29T02:04:14.153584Z", "repository": "https://github.com/specta-rs/rspc", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-rspc", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-rspc" }, { "source": "crates", - "name": "tauri-plugin-rusqlite", - "description": "Tauri Plugin based on Rusqlite", - "version": "0.4.4", - "downloads": 3875, - "repository": null, + "name": "tauri-plugin-drpc", + "description": "A plugin for Tauri that adds support for Discord Rich Presence", + "version": "0.1.6", + "created_at": "2025-01-26T16:36:47.112228Z", + "repository": "https://github.com/smokingplaya/tauri-plugin-drpc", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-rusqlite", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-drpc", + "npm": "https://www.npmjs.com/package/tauri-plugin-drpc", + "version_npm": "1.0.3" + }, + { + "source": "crates", + "name": "tauri-plugin-valtio", + "description": "Persistent Valtio stores for Tauri", + "version": "3.2.0", + "created_at": "2025-01-07T01:55:35.033034Z", + "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" + }, + { + "source": "npm", + "name": "tauri-plugin-network-api", + "description": "Network Plugin for Tauri Apps", + "version": "2.0.5", + "created_at": "2025-01-05T21:28:29.734Z", + "repository": "https://github.com/HuakunShen/tauri-plugin-network", + "npm": "https://www.npmjs.com/package/tauri-plugin-network-api" }, { "source": "crates", "name": "tauri-plugin-safe-area-insets", "description": "Tauri plugin for android safe area insets.", "version": "0.1.0", - "downloads": 3416, + "created_at": "2025-01-05T18:17:12.649720Z", "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 + "version_npm": "0.1.0" }, { "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, + "name": "tauri-plugin-python", + "description": "A tauri 2 plugin to use python code in the backend.", + "version": "0.3.7", + "created_at": "2025-01-04T21:14:03.921080Z", + "repository": "https://github.com/marcomq/tauri-plugin-python", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-safe-area-insets-css", - "github_stars": null + "homepage": "https://github.com/marcomq/tauri-plugin-python", + "crates_io": "https://crates.io/crates/tauri-plugin-python" }, { "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", + "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", + "created_at": "2025-01-03T16:11:13.635005Z", + "repository": "https://github.com/mamahuhu-io/tauri-plugin-async-wrapper", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-schedule-task", - "github_stars": null + "homepage": "https://github.com/mamahuhu-io/tauri-plugin-async-wrapper", + "crates_io": "https://crates.io/crates/tauri-plugin-async-wrapper" }, { - "source": "crates", - "name": "tauri-plugin-secure-storage", - "description": "Tauri plugin for secure storage using the system's keyring.", - "version": "1.4.0", - "downloads": 1393, + "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", + "created_at": "2024-12-23T20:58:25.541Z", "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 + "npm": "https://www.npmjs.com/package/tauri-plugin-keyring-api" }, { "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", + "name": "tauri-plugin-keyring", + "description": "A tauri plugin wrapper for the keyring crate", + "version": "0.1.0", + "created_at": "2024-12-23T16:36:41.540205Z", + "repository": null, "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 + "crates_io": "https://crates.io/crates/tauri-plugin-keyring" }, { - "source": "crates", - "name": "tauri-plugin-serialport-v1", - "description": "A tauri plugin developed based on Serialport.", + "source": "npm", + "name": "tauri-plugin-keepawake-api", + "description": "", "version": "0.1.0", - "downloads": 1441, + "created_at": "2024-12-23T11:49:08.488Z", "repository": null, - "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-serialport-v1", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-keepawake-api" }, { "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", + "name": "tauri-plugin-keepawake", + "description": "A Tauri plugin to keep the system awake", + "version": "0.1.1", + "created_at": "2024-12-23T11:44:24.351268Z", + "repository": "https://github.com/thewh1teagle/tauri-plugin-keepawake", "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 + "crates_io": "https://crates.io/crates/tauri-plugin-keepawake" }, { "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", + "name": "tauri-plugin-pytauri", + "description": "PyTauri plugin for Tauri", + "version": "0.8.0", + "created_at": "2024-12-21T05:35:29.948514Z", + "repository": "https://github.com/pytauri/pytauri/", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-sharekit", - "github_stars": null + "homepage": "https://github.com/pytauri/pytauri/", + "crates_io": "https://crates.io/crates/tauri-plugin-pytauri" }, { "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", + "name": "tauri-plugin-svelte", + "description": "Persistent Svelte stores for Tauri", + "version": "3.1.0", + "created_at": "2024-12-16T17:04:25.891914Z", + "repository": "https://github.com/ferreira-tb/tauri-store", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-sharesheet", - "github_stars": null + "homepage": "https://tb.dev.br/tauri-store/plugin-svelte/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-svelte" }, { - "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": "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", + "created_at": "2024-12-16T11:12:55.011Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-is-simulator-api" }, { "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", + "name": "tauri-plugin-is-simulator", + "description": "A simple Tauri plugin to check if the app is running in a simulator.", + "version": "1.0.0", + "created_at": "2024-12-16T11:12:48.683535Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-shellx", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-is-simulator" }, { "source": "crates", - "name": "tauri-plugin-sherpa-ncnn", - "description": "Real-time Speech recognition plugin for Tauri V2 Android.", - "version": "0.1.4", - "downloads": 1272, + "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", + "created_at": "2024-12-15T19:53:55.227112Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-sherpa-ncnn", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-is-simulator-temp" }, { - "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": "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", + "created_at": "2024-12-06T21:27:07.643Z", + "repository": "https://github.com/eugenehp/tauri-plugin-gamepad", + "npm": "https://www.npmjs.com/package/tauri-plugin-gamepad-api" }, { - "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": "npm", + "name": "tauri-plugin-keygen-rs-api", + "description": "Tauri plugin for Keygen.sh licensing, based on keygen-rs", + "version": "0.2.3", + "created_at": "2024-12-03T00:24:24.592Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-keygen-rs-api" }, { "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", + "name": "tauri-plugin-fs-pro", + "description": "Extended with additional methods for files and directories.", + "version": "2.4.0", + "created_at": "2024-11-23T12:14:48.618916Z", + "repository": "https://github.com/ayangweb/tauri-plugin-fs-pro", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-spotlight", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-fs-pro" }, { "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", + "name": "tauri-plugin-fs-ios", + "description": "A plugin for accessing the filesystem on ios", + "version": "0.4.0", + "created_at": "2024-11-19T07:35:04.500661Z", + "repository": "https://github.com/kennardpeters/tauri-plugin-fs-ios", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-sql", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-fs-ios" }, { "source": "crates", - "name": "tauri-plugin-sqlite", - "description": "tauri plugin for sqlite", - "version": "0.1.1", - "downloads": 1251, - "repository": null, + "name": "tauri-plugin-m3", + "description": "Android Material3/MaterialYou Plugin", + "version": "0.2.2", + "created_at": "2024-11-18T17:51:37.314719Z", + "repository": "https://github.com/0xk1f0/tauri-plugin-m3", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-sqlite", - "github_stars": null + "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" }, { "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", + "name": "tauri-plugin-keychain", + "description": "A Tauri keychain plugin", + "version": "2.0.2", + "created_at": "2024-11-18T07:44:11.760961Z", + "repository": "https://github.com/lindongchen/tauri-plugin-keychain", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-sqlite-plus", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-keychain", + "npm": "https://www.npmjs.com/package/tauri-plugin-keychain", + "version_npm": "2.0.1" }, { "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, + "name": "tauri-plugin-macos-permissions", + "description": "Support for checking and requesting macos system permissions.", + "version": "2.3.0", + "created_at": "2024-11-18T04:40:35.336589Z", + "repository": "https://github.com/ayangweb/tauri-plugin-macos-permissions", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-sse", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-macos-permissions" + }, + { + "source": "npm", + "name": "tauri-plugin-view-api", + "description": "A mobile plugin for Tauri for viewing and sharing files.", + "version": "0.0.5", + "created_at": "2024-11-16T18:57:19.706Z", + "repository": "https://github.com/ecmel/tauri-plugin-view", + "npm": "https://www.npmjs.com/package/tauri-plugin-view-api" }, { "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", + "name": "tauri-plugin-view", + "description": "A mobile plugin for Tauri for viewing and sharing files.", + "version": "0.0.5", + "created_at": "2024-11-16T18:54:03.449179Z", + "repository": null, "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-view" }, { "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", + "name": "tauri-plugin-blec", + "description": "BLE-Client plugin for Tauri", + "version": "0.8.1", + "created_at": "2024-11-12T14:48:34.978139Z", + "repository": "https://github.com/MnlPhlp/tauri-plugin-blec", "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 + "homepage": "https://github.com/MnlPhlp/tauri-plugin-blec", + "crates_io": "https://crates.io/crates/tauri-plugin-blec" }, { "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", + "name": "tauri-plugin-share", + "description": "A Tauri share plugin", + "version": "2.0.5", + "created_at": "2024-11-11T14:05:45.371726Z", + "repository": "https://github.com/lindongchen/tauri-plugin-share", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-store", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-share", + "npm": "https://www.npmjs.com/package/tauri-plugin-share", + "version_npm": "2.0.4" }, { "source": "crates", - "name": "tauri-plugin-stronghold", - "description": "Store secrets and keys using the IOTA Stronghold secret management engine.", - "version": "2.3.1", - "downloads": 88315, + "name": "tauri-plugin-opener", + "description": "Open files and URLs using their default application.", + "version": "2.5.2", + "created_at": "2024-11-11T14:05:14.617417Z", "repository": "https://github.com/tauri-apps/plugins-workspace", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-stronghold", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-opener" }, { "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", + "name": "tauri-plugin-sign-in-with-apple", + "description": "Add Sign In With Apple capabilities to your Tauri iOS App.", + "version": "1.0.2", + "created_at": "2024-11-11T01:32:38.506647Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-structure-manager", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-sign-in-with-apple" }, { "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", + "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", + "created_at": "2024-11-10T00:53:35.655246Z", + "repository": "https://github.com/houycth/tauri-plugin-polygon", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-sumup", - "github_stars": null + "homepage": "https://github.com/houycth/tauri-plugin-polygon", + "crates_io": "https://crates.io/crates/tauri-plugin-polygon" }, { - "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": "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", + "created_at": "2024-11-05T15:18:25.651Z", + "repository": "https://github.com/FabianLars/tauri-plugin-oauth", + "npm": "https://www.npmjs.com/package/%40fabianlars%2Ftauri-plugin-oauth" + }, + { + "source": "npm", + "name": "tauri-plugin-sharetarget-api", + "description": "tauri apps: receive share intents on Android", + "version": "0.1.6", + "created_at": "2024-11-02T19:52:59.963Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-sharetarget-api" }, { "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", + "name": "tauri-plugin-sharetarget", + "description": "tauri apps: receive share intents on Android", + "version": "0.1.6", + "created_at": "2024-11-01T12:46:49.585953Z", + "repository": "https://gitlab.com/lafleurdeboum/tauri-plugin-sharetarget", "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sharetarget" }, { "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", + "name": "tauri-plugin-app-events", + "description": "A plugin for tauri@v2 to listen some events on iOS and Android.", + "version": "0.2.0", + "created_at": "2024-10-28T11:26:22.701467Z", + "repository": "https://github.com/wtto00/tauri-plugin-app-events", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-system-info", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-app-events" }, { "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", + "name": "tauri-plugin-power-manager", + "description": "tauri plugin for shut down, reboot or log out operations.", + "version": "0.1.1", + "created_at": "2024-10-28T03:41:41.399582Z", + "repository": "https://github.com/cijiugechu/tauri-plugin-power-manager", "license": "", - "homepage": "https://tauri.app/", - "crates_io": "https://crates.io/crates/tauri-plugin-tauri", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-power-manager" + }, + { + "source": "npm", + "name": "tauri-plugin-app-exit-api", + "description": "A plugin for tauri@v2 to exit app.", + "version": "0.1.1", + "created_at": "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" }, { "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", + "name": "tauri-plugin-app-exit", + "description": "A plugin for tauri@v2 to exit app.", + "version": "0.1.1", + "created_at": "2024-10-23T13:18:24.946721Z", + "repository": "https://github.com/wtto00/tauri-plugin-app-exit", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-tcp", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-app-exit" }, { "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", + "name": "tauri-plugin-mqtt", + "description": "MQTT Client for Tauri App", + "version": "0.1.1", + "created_at": "2024-10-19T18:33:00.225334Z", + "repository": "https://github.com/kuyoonjo/tauri-plugin-mqtt", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-theme", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-mqtt" }, { "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", + "name": "tauri-plugin-sentry", + "description": "An experimental Tauri Plugin for Sentry", + "version": "0.5.0", + "created_at": "2024-10-19T11:17:04.535742Z", + "repository": "https://github.com/timfish/sentry-tauri", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-theme-v1", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-sentry" }, { "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, + "name": "tauri-plugin-tcp", + "description": "TCP Socket for Tauri App", + "version": "0.1.2", + "created_at": "2024-10-19T10:11:55.382402Z", + "repository": "https://github.com/kuyoonjo/tauri-plugin-tcp", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-tinys-internal-fs", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-tcp" + }, + { + "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", + "created_at": "2024-10-17T01:57:04.255Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-clipboard-api" + }, + { + "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", + "created_at": "2024-10-15T06:51:30.790Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40cakioe%2Ftauri-plugin-board" }, { "source": "crates", - "name": "tauri-plugin-toast", - "description": "A Tauri plugin for showing toast notifications on Android", - "version": "0.0.2", - "downloads": 682, + "name": "tauri-plugin-keygen-rs2", + "description": "Tauri plugin for Keygen.sh licensing, based on keygen-rs", + "version": "0.8.1", + "created_at": "2024-10-14T12:50:54.562456Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-toast", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-keygen-rs2" + }, + { + "source": "npm", + "name": "tauri-plugin-macos-haptics-api", + "description": "Utilize the Taptic Engine (TM) on macOS for Tauri v2 apps.", + "version": "1.0.0", + "created_at": "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" }, { "source": "crates", - "name": "tauri-plugin-torch", - "description": "A simple flash/torch control plugin for Tauri applications.", + "name": "tauri-plugin-polodb", + "description": "A Tauri plugin to expose the PoloDB embedded database to applications", "version": "0.1.0", - "downloads": 574, - "repository": "https://github.com/sosweetham/tauri-plugin-torch", + "created_at": "2024-09-05T20:17:09.880176Z", + "repository": "https://github.com/dax-dot-gay/tauri-plugin-polodb", "license": "", - "homepage": "https://kodski.com", - "crates_io": "https://crates.io/crates/tauri-plugin-torch", - "github_stars": null + "homepage": "https://github.com/dax-dot-gay/tauri-plugin-polodb", + "crates_io": "https://crates.io/crates/tauri-plugin-polodb" }, { "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, + "name": "tauri-plugin-desktop-underlay", + "description": "Tauri plugin for attaching a window to desktop, below icons and above wallpaper.", + "version": "0.2.0", + "created_at": "2024-09-03T19:28:47.484141Z", + "repository": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay", "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 + "homepage": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay", + "crates_io": "https://crates.io/crates/tauri-plugin-desktop-underlay" + }, + { + "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", + "created_at": "2024-08-30T16:47:34.780Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-keep-screen-on-api" + }, + { + "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", + "created_at": "2024-08-29T19:21:20.054Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40buildyourwebapp%2Ftauri-plugin-sharesheet" }, { "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", + "name": "tauri-plugin-sharesheet", + "description": "Share content with the Android Sharesheet and iOS Share Pane.", + "version": "0.0.1", + "created_at": "2024-08-29T19:20:41.713392Z", + "repository": "https://github.com/buildyourwebapp/tauri-plugin-sharesheet", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-udp", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-sharesheet" }, { "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", + "name": "tauri-plugin-ota-updater", + "description": "Over-the-air updates for the Web assets in a Tauri app.", + "version": "2.0.5", + "created_at": "2024-08-28T14:28:45.645958Z", + "repository": "https://github.com/crabnebula-dev/tauri-plugin-ota-updater", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-updater", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-ota-updater" }, { "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", + "name": "tauri-plugin-keygen-rs", + "description": "Tauri plugin for Keygen.sh licensing, based on keygen-rs", + "version": "0.7.0", + "created_at": "2024-08-27T09:29:12.898465Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-upload", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-keygen-rs" }, { "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", + "name": "tauri-plugin-macos-haptics", + "description": "Utilize the Taptic Engine (TM) on macOS for Tauri v2 apps.", + "version": "1.0.0", + "created_at": "2024-08-24T01:27:45.114261Z", + "repository": "https://github.com/itseeleeya/tauri-plugin-macos-haptics", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-usagestats", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-macos-haptics" }, { "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", + "name": "tauri-plugin-keep-screen-on", + "description": "A Tauri plugin that prevents screen timeout on Android and iOS", + "version": "0.1.4", + "created_at": "2024-08-03T15:57:39.645935Z", + "repository": "https://gitlab.com/cristofa/tauri-plugin-keep-screen-on", "license": "", - "homepage": "https://github.com/lin52025iq/tauri-plugin-use-ffmpeg", - "crates_io": "https://crates.io/crates/tauri-plugin-use-ffmpeg", - "github_stars": null + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-keep-screen-on" }, { "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", + "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", + "created_at": "2024-08-02T20:43:34.551883Z", + "repository": "https://github.com/itseeleeya/tauri-plugin-trafficlights-positioner/", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-user-data", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-trafficlights-positioner" }, { "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", + "name": "tauri-plugin-haptics", + "description": "Haptic feedback and vibrations on Android and iOS", + "version": "2.3.2", + "created_at": "2024-08-02T15:16:59.448081Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-haptics" }, { "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/", + "name": "tauri-plugin-geolocation", + "description": "Get and track the device's current position", + "version": "2.3.2", + "created_at": "2024-08-02T15:13:06.821410Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-vicons", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-geolocation" }, { "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", + "name": "tauri-plugin-tauri", + "description": "Tauri is a reserved Tauri plugin name", + "version": "2.0.0-beta.0", + "created_at": "2024-07-30T19:47:46.922046Z", + "repository": "https://github.com/tauri-apps/reserved-plugins", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-video-thumbnail", - "github_stars": null + "homepage": "https://tauri.app/", + "crates_io": "https://crates.io/crates/tauri-plugin-tauri" }, { "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", + "name": "tauri-plugin-core", + "description": "Core is a reserved Tauri plugin name", + "version": "2.0.0-beta.0", + "created_at": "2024-07-30T19:45:09.708472Z", + "repository": "https://github.com/tauri-apps/tauri-plugin-core", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-videoplayer", - "github_stars": null + "homepage": "https://tauri.app/", + "crates_io": "https://crates.io/crates/tauri-plugin-core" }, { "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, + "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", + "created_at": "2024-07-27T01:15:47.665294Z", + "repository": "https://github.com/HubioLabs/tauri-plugin-structure-manager", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-view", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-structure-manager" }, { "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", + "name": "tauri-plugin-accept-cookie", + "description": "A Tauri plugin for accept cookie in android.", + "version": "1.0.0", + "created_at": "2024-07-16T09:24:19.549184Z", + "repository": "https://github.com/Cinea4678/tauri-plugin-accept-cookie", "license": "", - "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-vnidrop-share", - "github_stars": null + "homepage": "https://github.com/Cinea4678/tauri-plugin-accept-cookie", + "crates_io": "https://crates.io/crates/tauri-plugin-accept-cookie" + }, + { + "source": "npm", + "name": "tauri-plugin-status-bar-color-api", + "description": "A Tauri plugin for set status bar's color.", + "version": "1.0.0", + "created_at": "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" }, { "source": "crates", - "name": "tauri-plugin-vue", - "description": "Persistence for Tauri and Vue", - "version": "2.1.0", - "downloads": 4733, + "name": "tauri-plugin-status-bar-color", + "description": "A Tauri plugin for set status bar's color.", + "version": "1.0.0", + "created_at": "2024-07-09T15:29:34.154276Z", + "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" + }, + { + "source": "crates", + "name": "tauri-plugin-swipe-back-ios", + "description": "swiping gesture navigation support in iOS", + "version": "1.0.0", + "created_at": "2024-07-09T06:28:10.276867Z", + "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" + }, + { + "source": "crates", + "name": "tauri-plugin-pinia", + "description": "Persistent Pinia stores for Tauri", + "version": "4.1.0", + "created_at": "2024-07-05T00:23:57.162128Z", "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 + "homepage": "https://tb.dev.br/tauri-store/plugin-pinia/guide/getting-started", + "crates_io": "https://crates.io/crates/tauri-plugin-pinia" }, { "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", + "name": "tauri-plugin-prevent-default", + "description": "Disable default browser shortcuts", + "version": "4.0.3", + "created_at": "2024-07-01T03:44:36.450244Z", + "repository": "https://github.com/ferreira-tb/tauri-plugin-prevent-default", "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 + "homepage": "https://github.com/ferreira-tb/tauri-plugin-prevent-default", + "crates_io": "https://crates.io/crates/tauri-plugin-prevent-default" }, { "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", + "name": "tauri-plugin-hal-steamworks", + "description": "Tauri plugin for steamworks that used in HAL", + "version": "0.0.4", + "created_at": "2024-06-28T19:53:42.746258Z", + "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" + }, + { + "source": "crates", + "name": "tauri-plugin-state", + "description": "Dead simple state management for tauri", + "version": "0.1.0", + "created_at": "2024-06-26T13:16:35.499221Z", + "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" + }, + { + "source": "crates", + "name": "tauri-plugin-oblivion", + "description": "Tauri plugin for oblivion", + "version": "0.1.0", + "created_at": "2024-06-19T14:35:45.679415Z", + "repository": "https://github.com/noctisynth/tauri-plugin-oblivion", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-web-auth", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-oblivion" }, { "source": "crates", - "name": "tauri-plugin-web-transport", - "description": "A Tauri plugin to polyfill WebTransport (on Safari)", + "name": "tauri-plugin-shellx", + "description": "Unlocked Tauri Shell Plugin", + "version": "2.0.16", + "created_at": "2024-06-19T07:08:55.439982Z", + "repository": "https://github.com/HuakunShen/tauri-plugin-shellx", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-shellx" + }, + { + "source": "crates", + "name": "tauri-plugin-keygen", + "description": "A Tauri Plugin for Keygen.sh Licensing", "version": "0.1.0", - "downloads": 630, + "created_at": "2024-06-18T16:19:51.029295Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-web-transport", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-keygen" }, { "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", + "name": "tauri-plugin-penetrable", + "description": "Using the win32api to achieve click-through of the tauri main window", + "version": "0.1.4", + "created_at": "2024-06-14T10:50:07.523227Z", + "repository": "https://github.com/sner21/tauri-plugin-penetrable", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-webauthn", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-penetrable" + }, + { + "source": "npm", + "name": "@kuyoonjo/tauri-plugin-udp", + "description": "## Install", + "version": "0.1.1", + "created_at": "2024-06-04T06:55:00.023Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-udp" }, { "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", + "name": "tauri-plugin-udp", + "description": "UDP Socket for Tauri App", + "version": "0.1.2", + "created_at": "2024-06-04T05:54:39.517629Z", + "repository": "https://github.com/kuyoonjo/tauri-plugin-udp", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-websocket", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-udp" }, { "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", + "name": "tauri-plugin-board", + "description": "vending machine development board of kits for tauri, use kotlin", + "version": "1.7.6", + "created_at": "2024-06-03T09:53:26.071657Z", + "repository": "https://github.com/cakioe/tauri-plugin-board", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-widget", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-board" }, { "source": "crates", - "name": "tauri-plugin-window", - "description": "Interact with the Tauri window.", - "version": "2.0.0-alpha.2", - "downloads": 112489, - "repository": null, + "name": "tauri-plugin-appearance", + "description": "Dynamically change Tauri App theme", + "version": "0.5.0", + "created_at": "2024-05-29T08:07:46.132230Z", + "repository": "https://github.com/kuyoonjo/tauri-plugin-theme", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-window", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-appearance" }, { "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", + "name": "tauri-plugin-printer-sujin999", + "description": "Tauri Plugin for printer access (Edit)", + "version": "1.0.15", + "created_at": "2024-05-29T05:16:34.620398Z", + "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-window-state", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-printer-sujin999" }, { "source": "crates", - "name": "tauri-plugin-zippy", - "description": "an async-first virtual file store with an accompanying Tauri plugin", + "name": "tauri-plugin-holochain", + "description": "Ship holochain apps to all platforms", "version": "0.0.0", - "downloads": 1327, + "created_at": "2024-05-27T11:16:32.149602Z", "repository": null, "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-zippy", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-holochain" }, { "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", + "name": "tauri-plugin-devtools-app", + "description": "Connect with the Devtools for Tauri application", + "version": "2.0.1", + "created_at": "2024-05-23T14:29:27.585228Z", + "repository": "https://github.com/crabnebula-dev/devtools", "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 + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-devtools-app" }, { "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", + "name": "tauri-plugin-decorum", + "description": "Opnionated window decoration controls for Tauri apps.", + "version": "1.1.1", + "created_at": "2024-05-13T00:24:25.986048Z", + "repository": "https://github.com/clearlysid/tauri-plugin-decorum", "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 + "homepage": "https://github.com/clearlysid/tauri-plugin-decorum", + "crates_io": "https://crates.io/crates/tauri-plugin-decorum" }, { "source": "crates", - "name": "tauri-plugin-zustand-storage", - "description": "A Tauri plugin for zustand storage", - "version": "0.1.9", - "downloads": 11966, - "repository": null, + "name": "tauri-plugin-theme-v1", + "description": "Dynamically change Tauri App theme", + "version": "0.2.1", + "created_at": "2024-05-11T03:05:43.469711Z", + "repository": "https://github.com/wyhaya/tauri-plugin-theme", "license": "", "homepage": "", - "crates_io": "https://crates.io/crates/tauri-plugin-zustand-storage", - "github_stars": null + "crates_io": "https://crates.io/crates/tauri-plugin-theme-v1" }, { "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", + "name": "@kuyoonjo/tauri-plugin-theme-api", + "description": "Dynamically change Tauri App theme", + "version": "0.2.0", + "created_at": "2024-05-11T03:05:02.947Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-clipboard-api", - "github_stars": null + "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-theme-api" }, { "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 + "name": "@kuyoonjo/tauri-plugin-serialport-api", + "description": "A tauri plugin developed based on Serialport.", + "version": "0.1.3", + "created_at": "2024-05-07T06:05:52.291Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-serialport-api" }, { "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", + "name": "tauri-plugin-rusqlite-api", + "description": "Tauri Plugin based on Rusqlite", + "version": "0.4.4", + "created_at": "2024-04-19T03:59:40.448Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-mixpanel-api", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-rusqlite-api" }, { - "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", + "source": "crates", + "name": "tauri-plugin-serialport-v1", + "description": "A tauri plugin developed based on Serialport.", + "version": "0.1.0", + "created_at": "2024-04-18T07:14:35.923509Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-keyring-api", - "github_stars": null + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-serialport-v1" }, { "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 + "name": "tauri-plugin-nosleep-api-fork", + "description": "Tauri plugin to block the power save functionality in the OS", + "version": "0.1.3", + "created_at": "2024-04-10T21:23:41.483Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-nosleep-api-fork" }, { - "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", + "source": "crates", + "name": "tauri-plugin-openurl", + "description": "open url in default browser (just like target blank) in Tauri", + "version": "0.1.0", + "created_at": "2024-04-08T15:51:28.331877Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-askit-api", - "github_stars": null + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-openurl" }, { - "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": "crates", + "name": "tauri-plugin-cors-fetch", + "description": "Enabling Cross-Origin Resource Sharing (CORS) for Fetch Requests within Tauri applications.", + "version": "4.1.0", + "created_at": "2024-03-23T16:31:06.822451Z", + "repository": "https://github.com/idootop/tauri-plugin-cors-fetch", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-cors-fetch" }, { - "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": "crates", + "name": "tauri-plugin-rusqlite", + "description": "Tauri Plugin based on Rusqlite", + "version": "0.4.4", + "created_at": "2024-03-21T02:38:14.440739Z", + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-rusqlite" }, { - "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": "crates", + "name": "tauri-plugin-fanto", + "description": "tauri plugin fantoccini integrated with webdriver-downloader", + "version": "0.2.0", + "created_at": "2024-03-09T09:26:30.053791Z", + "repository": "https://github.com/seongs1024/tauri-plugin-fanto", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-fanto" }, { - "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": "crates", + "name": "tauri-plugin-zippy", + "description": "an async-first virtual file store with an accompanying Tauri plugin", + "version": "0.0.0", + "created_at": "2024-02-17T02:43:30.638836Z", + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-zippy" }, { "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", + "name": "tauri-plugin-zustand-storage-api", + "description": "A Tauri plugin for zustand storage", + "version": "0.1.9", + "created_at": "2024-02-13T04:25:19.337Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-keep-screen-on-api", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-zustand-storage-api" }, { "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 + "name": "@thenbe/tauri-plugin-serialport-api", + "description": "A tauri plugin developed based on Serialport.", + "version": "1.0.0", + "created_at": "2024-02-12T20:20:37.148Z", + "repository": null, + "npm": "https://www.npmjs.com/package/%40thenbe%2Ftauri-plugin-serialport-api" }, { - "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": "crates", + "name": "tauri-plugin-zustand-storage", + "description": "A Tauri plugin for zustand storage", + "version": "0.1.9", + "created_at": "2024-02-12T13:33:43.007699Z", + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-zustand-storage" }, { - "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": "crates", + "name": "tauri-plugin-screen-lock-status", + "description": "This plugin helps track the lock status for the current session", + "version": "0.1.2", + "created_at": "2024-02-07T20:14:32.617704Z", + "repository": "https://github.com/ren40/tauri-plugin-screen-lock-status", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-screen-lock-status" }, { - "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", + "source": "crates", + "name": "tauri-plugin-serialplugin", + "description": "Access the current process of your Tauri application.", "version": "2.21.1", - "date": "2025-11-05T12:27:34.148Z", + "created_at": "2024-02-04T17:10:32.146073Z", "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 + "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" }, { - "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", + "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", + "created_at": "2024-01-31T11:25:57.688907Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-netwait-api", - "github_stars": null + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-drag-as-window" }, { - "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": "crates", + "name": "tauri-plugin-midi", + "description": "A WebMIDI-compatible plugin for Tauri", + "version": "0.1.5", + "created_at": "2024-01-26T14:34:17.964557Z", + "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" }, { - "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": "crates", + "name": "tauri-plugin-manatsu", + "description": "Manatsu plugin for Tauri", + "version": "0.0.0", + "created_at": "2023-12-31T08:41:51.635389Z", + "repository": "https://github.com/ferreira-tb/manatsu", + "license": "", + "homepage": "https://github.com/ferreira-tb/manatsu", + "crates_io": "https://crates.io/crates/tauri-plugin-manatsu" }, { - "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": "crates", + "name": "tauri-plugin-nfc", + "description": "Read and write NFC tags on Android and iOS.", + "version": "2.3.3", + "created_at": "2023-12-20T03:33:13.069225Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-nfc" }, { - "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": "crates", + "name": "tauri-plugin-biometric", + "description": "Prompt the user for biometric authentication on Android and iOS.", + "version": "2.3.2", + "created_at": "2023-12-20T03:14:28.114171Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-biometric" }, { - "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)", + "source": "crates", + "name": "tauri-plugin-pty", + "description": "Pseudo Terminal (PTY) plugin for Tauri", "version": "0.1.1", - "date": "2025-11-20T01:40:23.023Z", + "created_at": "2023-12-19T16:34:31.214708Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-sse-api", - "github_stars": null + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-pty" }, { - "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": "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", + "created_at": "2023-12-13T19:01:28.033668Z", + "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" + }, + { + "source": "crates", + "name": "tauri-plugin-drag", + "description": "Start a drag operation out of a Tauri window", + "version": "2.1.0", + "created_at": "2023-12-07T14:49:55.050846Z", + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-drag" }, { "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.", + "name": "tauri-plugin-nosleep-api", + "description": "Tauri plugin to block the power save functionality in the OS", "version": "0.1.1", - "date": "2025-09-28T14:08:48.241Z", + "created_at": "2023-11-08T16:21:55.062Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-widget-api", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-nosleep-api" }, { - "source": "npm", - "name": "@thenbe/tauri-plugin-serialport-api", - "description": "A tauri plugin developed based on Serialport.", + "source": "crates", + "name": "tauri-plugin-theme", + "description": "Dynamically change Tauri App theme", "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 + "created_at": "2023-09-29T10:13:30.880553Z", + "repository": "https://github.com/wyhaya/tauri-plugin-theme", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-theme" }, { - "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": "crates", + "name": "tauri-plugin-devtools", + "description": "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease.", + "version": "2.0.1", + "created_at": "2023-09-18T15:56:22.944599Z", + "repository": "https://github.com/crabnebula-dev/devtools", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-devtools" }, { - "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": "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", + "created_at": "2023-09-14T14:47:03.532712Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-barcode-scanner" }, { - "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": "crates", + "name": "tauri-plugin-network", + "description": "A tauri plugin for retrieving system info", + "version": "2.0.4", + "created_at": "2023-08-17T18:53:20.102506Z", + "repository": "https://github.com/HuakunShen/tauri-plugin-network", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-network" }, { - "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": "crates", + "name": "tauri-plugin-system-info", + "description": "A tauri plugin for retrieving system info", + "version": "2.0.9", + "created_at": "2023-08-16T21:59:45.585695Z", + "repository": "https://github.com/HuakunShen/tauri-plugin-system-info", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-system-info" }, { - "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": "crates", + "name": "tauri-plugin-context-menu", + "description": "Handle native Context Menu in Tauri", + "version": "0.8.2", + "created_at": "2023-07-30T21:12:19.141107Z", + "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" }, { - "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", + "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", + "created_at": "2023-06-24T12:45:37.879270Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-web-auth-api", - "github_stars": null + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-open" }, { - "source": "npm", - "name": "tauri-plugin-remote-push-api", - "description": "A Tauri plugin for remote push notifications on iOS and Android.", + "source": "crates", + "name": "tauri-plugin-printer", + "description": "Tauri Plugin for printer access", "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 + "created_at": "2023-05-29T06:00:44.426923Z", + "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" }, { - "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": "crates", + "name": "tauri-plugin-window", + "description": "Interact with the Tauri window.", + "version": "2.0.0-alpha.2", + "created_at": "2023-05-24T21:40:25.598628Z", + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-window" }, { - "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": "crates", + "name": "tauri-plugin-websocket", + "description": "Expose a WebSocket server to your Tauri frontend.", + "version": "2.4.1", + "created_at": "2023-05-24T21:37:34.655710Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-websocket" }, { - "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": "crates", + "name": "tauri-plugin-upload", + "description": "Upload files from disk to a remote server over HTTP.", + "version": "2.3.2", + "created_at": "2023-05-24T21:34:39.827317Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-upload" }, { - "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": "crates", + "name": "tauri-plugin-updater", + "description": "In-app updates for Tauri applications.", + "version": "2.9.0", + "created_at": "2023-05-24T21:31:49.295222Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-updater" }, { - "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": "crates", + "name": "tauri-plugin-stronghold", + "description": "Store secrets and keys using the IOTA Stronghold secret management engine.", + "version": "2.3.1", + "created_at": "2023-05-24T21:28:47.200017Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-stronghold" }, { - "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": "crates", + "name": "tauri-plugin-store", + "description": "Simple, persistent key-value store.", + "version": "2.4.1", + "created_at": "2023-05-24T21:24:52.196599Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-store" }, { - "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": "crates", + "name": "tauri-plugin-sql", + "description": "Interface with SQL databases.", + "version": "2.3.1", + "created_at": "2023-05-24T21:21:58.281987Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-sql" }, { - "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": "crates", + "name": "tauri-plugin-single-instance", + "description": "Ensure a single instance of your tauri app is running.", + "version": "2.3.6", + "created_at": "2023-05-24T20:40:08.720212Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-single-instance" }, { - "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": "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", + "created_at": "2023-05-24T20:36:00.493906Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-shell" }, { - "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": "crates", + "name": "tauri-plugin-process", + "description": "Access the current process of your Tauri application.", + "version": "2.3.1", + "created_at": "2023-05-24T20:32:11.377661Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-process" }, { - "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": "crates", + "name": "tauri-plugin-os", + "description": "Read information about the operating system.", + "version": "2.3.2", + "created_at": "2023-05-24T16:27:55.427696Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-os" }, { - "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": "crates", + "name": "tauri-plugin-notification", + "description": "Send desktop and mobile notifications on your Tauri application.", + "version": "2.3.3", + "created_at": "2023-05-24T16:24:02.512921Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-notification" }, { - "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": "crates", + "name": "tauri-plugin-log", + "description": "Configurable logging for your Tauri app.", + "version": "2.7.1", + "created_at": "2023-05-24T16:19:42.969124Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-log" }, { - "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": "crates", + "name": "tauri-plugin-http", + "description": "Access an HTTP client written in Rust.", + "version": "2.5.4", + "created_at": "2023-05-24T15:34:07.625082Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-http" }, { - "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": "crates", + "name": "tauri-plugin-global-shortcut", + "description": "Register global hotkeys listeners on your Tauri application.", + "version": "2.3.1", + "created_at": "2023-05-24T15:30:28.856884Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-global-shortcut" }, { - "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": "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", + "created_at": "2023-05-24T15:26:37.142281Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-dialog" }, { - "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": "crates", + "name": "tauri-plugin-fs", + "description": "Access the file system.", + "version": "2.4.4", + "created_at": "2023-05-24T15:22:51.462555Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-fs" }, { - "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": "crates", + "name": "tauri-plugin-clipboard-manager", + "description": "Read and write to the system clipboard.", + "version": "2.3.2", + "created_at": "2023-05-24T15:12:59.351289Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-clipboard-manager" }, { - "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": "crates", + "name": "tauri-plugin-cli", + "description": "Parse arguments from your Tauri application's command line interface.", + "version": "2.4.1", + "created_at": "2023-05-24T14:28:14.493975Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-cli" }, { - "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": "crates", + "name": "tauri-plugin-autostart", + "description": "Automatically launch your application at startup.", + "version": "2.5.1", + "created_at": "2023-05-24T14:25:16.564853Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-autostart" }, { - "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": "crates", + "name": "tauri-plugin-authenticator", + "description": "Use hardware security-keys in your Tauri App.", + "version": "2.0.0-rc.1", + "created_at": "2023-05-24T14:22:22.314058Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-authenticator" }, { - "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": "crates", + "name": "tauri-plugin-app", + "description": "APIs to read application metadata and change app visibility on macOS.", + "version": "2.0.0-alpha.2", + "created_at": "2023-05-24T14:19:12.543768Z", + "repository": null, + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-app" }, { "source": "npm", - "name": "@duttt/tauri-plugin-broadcast-api", - "description": "tauri plugin broadcast api", - "version": "0.2.0", - "date": "2025-09-15T09:01:27.304Z", + "name": "tauri-plugin-store-api", + "description": "Simple, persistent key-value store.", + "version": "0.0.0", + "created_at": "2023-05-05T09:17:59.741Z", "repository": null, - "npm": "https://www.npmjs.com/package/%40duttt%2Ftauri-plugin-broadcast-api", - "github_stars": null + "npm": "https://www.npmjs.com/package/tauri-plugin-store-api" }, { - "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": "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", + "created_at": "2023-04-07T13:45:38.697495Z", + "repository": "https://github.com/FabianLars/tauri-plugin-oauth", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-oauth" }, { "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 + "name": "tauri-plugin-spotlight-api", + "description": "Tauri plugin that provides a MacOS Spotlight-like search functionality for Tauri windows.", + "version": "0.1.2", + "created_at": "2023-04-01T11:13:25.643Z", + "repository": "https://github.com/zzzze/tauri-plugin-spotlight", + "npm": "https://www.npmjs.com/package/tauri-plugin-spotlight-api" }, { - "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": "crates", + "name": "tauri-plugin-wallpaper", + "description": "A Tauri plugin to set your window as wallpaper behind desktop icons", + "version": "2.0.2", + "created_at": "2023-03-29T20:27:25.373070Z", + "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" }, { - "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": "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", + "created_at": "2023-03-24T16:26:33.099782Z", + "repository": "https://github.com/aptabase/tauri-plugin-aptabase", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-aptabase" }, { - "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": "crates", + "name": "tauri-plugin-deep-link", + "description": "Set your Tauri application as the default handler for an URL", + "version": "2.4.5", + "created_at": "2023-02-27T21:03:31.009259Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-deep-link" }, { - "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": "crates", + "name": "tauri-plugin-spotlight", + "description": "A Tauri plugin that provides a MacOS Spotlight-like search functionality for Tauri windows.", + "version": "0.2.0", + "created_at": "2023-02-19T09:54:55.742452Z", + "repository": "https://github.com/zzzze/tauri-plugin-spotlight", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-spotlight" }, { - "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": "crates", + "name": "tauri-plugin-http-ext", + "description": "Tauri plugin http ext api", + "version": "1.0.1", + "created_at": "2023-01-27T03:53:11.829388Z", + "repository": "https://github.com/ardyfeb/tauri-plugin-http-ext", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-http-ext" }, { - "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": "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", + "created_at": "2023-01-19T21:55:59.032589Z", + "repository": "https://github.com/CrossCopy/tauri-plugin-clipboard", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-clipboard" }, { "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 + "name": "tauri-plugin-graphql-urql", + "description": "A plugin for Tauri that enables type-safe IPC through GraphQL.", + "version": "2.0.3", + "created_at": "2023-01-10T12:56:46.577Z", + "repository": "https://github.com/JonasKruckenberg/tauri-plugin-graphql", + "npm": "https://www.npmjs.com/package/tauri-plugin-graphql-urql" }, { "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 + "name": "tauri-plugin-reqwest", + "description": "定制化tauri-plugin-reqwest", + "version": "0.0.4", + "created_at": "2022-10-30T04:30:21.688Z", + "repository": "https://github.com/ddchef/tauri-plugin-reqwest", + "npm": "https://www.npmjs.com/package/tauri-plugin-reqwest" }, { - "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": "crates", + "name": "tauri-plugin-persisted-scope", + "description": "Save filesystem and asset scopes and restore them when the app is reopened.", + "version": "2.3.4", + "created_at": "2022-06-19T22:44:39.603666Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-persisted-scope" }, { - "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": "crates", + "name": "tauri-plugin-window-state", + "description": "Save window positions and sizes and restore them when the app is reopened.", + "version": "2.4.1", + "created_at": "2022-06-19T22:15:38.373663Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-window-state" }, { - "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": "crates", + "name": "tauri-plugin-localhost", + "description": "Expose your apps assets through a localhost server instead of the default custom protocol.", + "version": "2.3.1", + "created_at": "2022-06-19T19:15:12.380030Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-localhost" }, { "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 + "name": "tauri-plugin-positioner-api", + "description": "Helps positioning your tauri windows.", + "version": "0.2.7", + "created_at": "2022-06-16T12:15:12.749Z", + "repository": null, + "npm": "https://www.npmjs.com/package/tauri-plugin-positioner-api" }, { - "source": "npm", - "name": "tauri-plugin-rusqlite-api", - "description": "Tauri Plugin based on Rusqlite", - "version": "0.4.4", - "date": "2024-04-19T03:59:40.448Z", + "source": "crates", + "name": "tauri-plugin-nosleep", + "description": "Tauri plugin to prevent the power save functionality in the OS", + "version": "2.0.0-beta.1", + "created_at": "2022-05-08T13:10:22.304528Z", "repository": null, - "npm": "https://www.npmjs.com/package/tauri-plugin-rusqlite-api", - "github_stars": null + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-nosleep" }, { - "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": "crates", + "name": "tauri-plugin-graphql", + "description": "A plugin for Tauri that enables type-safe IPC through GraphQL.", + "version": "2.1.0", + "created_at": "2022-03-30T19:24:49.393982Z", + "repository": "https://github.com/JonasKruckenberg/tauri-plugin-graphql", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-graphql" }, { - "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 + "source": "crates", + "name": "tauri-plugin-positioner", + "description": "Position your windows at well-known locations.", + "version": "2.3.1", + "created_at": "2021-11-19T17:57:01.428784Z", + "repository": "https://github.com/tauri-apps/plugins-workspace", + "license": "", + "homepage": "", + "crates_io": "https://crates.io/crates/tauri-plugin-positioner" } ] -} +} \ No newline at end of file From e5f3525dd98711ca27c532051cbdc142cc328a9e Mon Sep 17 00:00:00 2001 From: Ayres Vitor Date: Tue, 9 Dec 2025 15:25:07 -0300 Subject: [PATCH 3/8] format --- src/content/docs/plugin/index.mdx | 4 +--- src/data/communityResources.json | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/content/docs/plugin/index.mdx b/src/content/docs/plugin/index.mdx index 11561e82b7..4b044cfd3e 100644 --- a/src/content/docs/plugin/index.mdx +++ b/src/content/docs/plugin/index.mdx @@ -22,7 +22,7 @@ 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/) +Also we have a dedicated page for listing discovered community tauri-plugin-\* [Crates and NPM packages](/plugin/index-external-resources/)
@@ -37,8 +37,6 @@ Also we have a dedicated page for listing discovered community tauri-plugin-* [C - - ## 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 index 73b52ffa08..dfa6744272 100644 --- a/src/data/communityResources.json +++ b/src/data/communityResources.json @@ -3635,4 +3635,4 @@ "crates_io": "https://crates.io/crates/tauri-plugin-positioner" } ] -} \ No newline at end of file +} From 2a718cc65e1160df1df5a1bcb122f8365479aa5a Mon Sep 17 00:00:00 2001 From: Ayres Vitor Date: Tue, 9 Dec 2025 15:38:35 -0300 Subject: [PATCH 4/8] limit read only permission --- .github/workflows/syncCommunityResources.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/syncCommunityResources.yml b/.github/workflows/syncCommunityResources.yml index 31ec21aab9..be554f5e87 100644 --- a/.github/workflows/syncCommunityResources.yml +++ b/.github/workflows/syncCommunityResources.yml @@ -6,6 +6,9 @@ on: - cron: '0 0 * * 1' workflow_dispatch: +permissions: + contents: read + jobs: sync-community-resources: name: Sync Community Resources From 5e48749304c573acb36097a8ccf98fab666f2842 Mon Sep 17 00:00:00 2001 From: Ayres Vitor Date: Tue, 9 Dec 2025 19:33:26 -0300 Subject: [PATCH 5/8] ui --- src/components/CommunityResources.astro | 55 ++++++++++++++++++++----- src/components/list/Features.astro | 2 +- 2 files changed, 45 insertions(+), 12 deletions(-) diff --git a/src/components/CommunityResources.astro b/src/components/CommunityResources.astro index b0814ae607..d6bf02babe 100644 --- a/src/components/CommunityResources.astro +++ b/src/components/CommunityResources.astro @@ -45,9 +45,9 @@ const filteredResources = resources.filter((item) => !item.repository?.includes( - - - + + + @@ -94,7 +94,7 @@ const filteredResources = resources.filter((item) => !item.repository?.includes( -
Name & LinksDescriptionCreatedName & LinksDescriptionCreated
{item.description} + {item.created_at ? new Date(item.created_at).toLocaleDateString('en-US', { year: 'numeric', @@ -113,8 +113,14 @@ const filteredResources = resources.filter((item) => !item.repository?.includes(