12345678910111213141516171819 |
- document.addEventListener('DOMContentLoaded', function () {
- var element = document.getElementById('myButton');
- chrome.storage.sync.get(['local_llm_url', 'local_llm_apiKey'], function (items) {
- document.getElementById('url').value = items.local_llm_url || 'http://llmtest.yangzhiqiang.tech/api/chat/generation';
- document.getElementById('apiKey').value = items.local_llm_apiKey || 'f2054ac961234ab1b3fd480125043472';
- })
- element.addEventListener('click', function () {
- var url = document.getElementById('url').value;
- var apiKey = document.getElementById('apiKey').value;
- if (!url || !apiKey) {
- alert('请输入url和apiKey');
- } else {
- chrome.storage.sync.set({ 'local_llm_url': url, 'local_llm_apiKey': apiKey }, function () {
- chrome.runtime.sendMessage({ action: "configFinish" });
- window.close();
- });
- }
- });
- });
|