https://github.com/upstash/context7 - Naujojamas patikrinti naujausias bibliotekas
https://www.youtube.com/watch?v=xOO8Wt_i72s&ab_channel=PatrickEllis - claude mcp
https://github.com/microsoft/playwright-mcp
playwright install
npx playwright install install chrome
Chrome AI:
https://github.com/GoogleChrome/chrome-extensions-samples
chrome://on-device-internals/
https://developer.chrome.com/docs/extensions/get-started/tutorial/hello-world
https://googlechromeai2025.devpost.com/resources
https://groups.google.com/u/1/a/chromium.org/g/chrome-ai-dev-preview/c/4Xeuq3Px9HA
https://developer.chrome.com/origintrials/#/trials/active
Model data; chrome://on-device-internals/
Step 1: Force Download via Components Page
This is the most reliable method:
- Go to:
chrome://components/
- Find: "Optimization Guide On Device Model"
- Click: "Check for update" button
- Wait for it to download (you'll see the version number update)
-
- Monitor the download:
- Open a new tab:
chrome://on-device-internals
- Go to the "Model Status" tab
- You should see Gemini Nano downloading
- Wait 5-15 minutes for download to complete
- Verify it's ready:
await LanguageModel.availability(); // Should return 'available'
const session = await LanguageModel.create({ outputLanguage: 'lt' });
const result = await session.prompt('Parasyk haiku apie kodavimą');
console.log(result);