diff --git a/recipes/deepseek/icon.svg b/recipes/deepseek/icon.svg new file mode 100644 index 000000000..3fc230240 --- /dev/null +++ b/recipes/deepseek/icon.svg @@ -0,0 +1 @@ +DeepSeek \ No newline at end of file diff --git a/recipes/deepseek/index.js b/recipes/deepseek/index.js new file mode 100644 index 000000000..dd41f7287 --- /dev/null +++ b/recipes/deepseek/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/deepseek/package.json b/recipes/deepseek/package.json new file mode 100644 index 000000000..2e97eab3f --- /dev/null +++ b/recipes/deepseek/package.json @@ -0,0 +1,9 @@ +{ + "id": "deepseek", + "name": "DeepSeek", + "version": "1.0.1", + "license": "MIT", + "config": { + "serviceURL": "https://chat.deepseek.com/" + } +} diff --git a/recipes/deepseek/webview.js b/recipes/deepseek/webview.js new file mode 100644 index 000000000..11192196b --- /dev/null +++ b/recipes/deepseek/webview.js @@ -0,0 +1,9 @@ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +const _path = _interopRequireDefault(require('path')); + +module.exports = Ferdium => { + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +};