mirror of
https://github.com/jonasrafa/kunkun-ext-google-search.git
synced 2025-04-04 10:16:44 +00:00

- Add action panel with open, copy URL, and copy query actions - Improve error handling and toast notifications - Update package.json permissions for URL and clipboard access - Refactor result handling and decoding in handleResults.ts
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh",
|
|
"name": "google-search",
|
|
"version": "0.0.10",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "Google Search",
|
|
"shortDescription": "Google search with autosuggestions",
|
|
"longDescription": "Google search with autosuggestions",
|
|
"identifier": "google-search",
|
|
"permissions": [
|
|
"fetch:all",
|
|
"clipboard:write-text",
|
|
{
|
|
"permission": "open:url",
|
|
"allow": [
|
|
{
|
|
"url": "https://**"
|
|
},
|
|
{
|
|
"url": "http://**"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"demoImages": [],
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "material-symbols:extension"
|
|
},
|
|
"customUiCmds": [],
|
|
"templateUiCmds": [
|
|
{
|
|
"name": "Google Search",
|
|
"description": "Google search with autosuggestions",
|
|
"main": "dist/index.js",
|
|
"cmds": []
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "bun build.ts dev",
|
|
"build": "bun build.ts"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "0.1.5",
|
|
"i18next": "^23.15.1",
|
|
"iconv-lite": "^0.6.3",
|
|
"nanoid": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"./dist",
|
|
".gitignore"
|
|
]
|
|
}
|