-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
major rewrite in svelte. optimized core tab search, added sidebar wit…
…h vertical tabs organizer, * Scroll to and highlight the query on page, click result again,Resolve query against LLM search or Google
- Loading branch information
vtempest
committed
Jul 6, 2024
1 parent
2152060
commit f8c28c8
Showing
13 changed files
with
367 additions
and
354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,46 @@ | ||
## in10search Tab Manager AI | ||
|
||
- Horizontal Tabs in Browser Sidepanel with Search | ||
<p align="center"> | ||
<a href="https://chromewebstore.google.com/detail/in10search/manhemnhmipdhdpabojcplebckhckeko?authuser=2&hl=en"> | ||
<img src="https://storage.googleapis.com/web-dev-uploads/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/tbyBjqi7Zu733AAKA5n4.png" /> | ||
</a> | ||
</p> | ||
|
||
* Horizontal Tabs in Browser Sidepanel | ||
|
||
* Search Inside All Open Tabs Page Content | ||
|
||
* Scroll to and highlight the query on page | ||
|
||
* Resolve query against LLM search or Google | ||
|
||
|
||
### Screenshot | ||
|
||
<img src="https://i.imgur.com/tpToRRB.png"> | ||
|
||
|
||
## Ideas for Future Development | ||
|
||
|
||
- Ask ChatGPT About Text Content of All Open Tabs | ||
* Ask ChatGPT about Text Content of All Open Tabs | ||
|
||
* Reader Mode to Extract main content text and cite | ||
|
||
* Tree tab view and history view | ||
|
||
* AI recommend [Tab Groups](https://developer.chrome.com/docs/extensions/reference/tabGroups/) (Chrome AI Experiments has similar) | ||
|
||
- readability extract article, cite | ||
* [Chrome Extensions API Docs](https://developer.chrome.com/docs/extensions/reference) | ||
|
||
- scroll and highlight the query words on result | ||
* Backup & close a read-it-later list | ||
|
||
- tree tab view and history view | ||
* Voice Ask with Whisper in WebGPU to Search | ||
|
||
- autogen suggested [Tab Groups](https://developer.chrome.com/docs/extensions/reference/tabGroups/) | ||
* Show current url & title when in full screen with sidebar | ||
|
||
- auto keywords generator and search query builder related keywords | ||
* Search in text of recently closed history | ||
|
||
- backup & close a read-it-later list | ||
* Keywords generator and search query builder related keywords | ||
|
||
- show current url & title when full screen | ||
* Crowdsourced bookmarking of topic outlines |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
{ | ||
"name": "in10search-chrome", | ||
"version": "4.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"check": "svelte-check --tsconfig ./tsconfig.json" | ||
}, | ||
"devDependencies": { | ||
"@crxjs/vite-plugin": "^2.0.0-beta.19", | ||
"@sveltejs/vite-plugin-svelte": "^2.4.6", | ||
"@tsconfig/svelte": "^5.0.2", | ||
"@types/chrome": "^0.0.243", | ||
"svelte": "^4.2.2", | ||
"svelte-check": "^3.5.2", | ||
"svelte-preprocess": "^5.0.4", | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.5.0" | ||
}, | ||
"dependencies": { | ||
"@editorjs/editorjs": "^2.28.2", | ||
"@editorjs/underline": "^1.1.0", | ||
"editorjs-drag-drop": "^1.1.13", | ||
"editorjs-undo": "^2.0.24" | ||
} | ||
"name": "in10search-chrome", | ||
"version": "4.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"check": "svelte-check --tsconfig ./tsconfig.json" | ||
}, | ||
"devDependencies": { | ||
"@crxjs/vite-plugin": "2.0.0-beta.23", | ||
"@skeletonlabs/skeleton": "^2.9.2", | ||
"@skeletonlabs/tw-plugin": "^0.4.0", | ||
"@sveltejs/vite-plugin-svelte": "^3.1.0", | ||
"@tailwindcss/forms": "^0.5.7", | ||
"@tsconfig/svelte": "^5.0.4", | ||
"@types/chrome": "^0.0.267", | ||
"@types/node": "^20.12.10", | ||
"autoprefixer": "^10.4.19", | ||
"daisyui": "^4.10.5", | ||
"postcss": "^8.4.38", | ||
"postcss-load-config": "^5.1.0", | ||
"svelte": "^4.2.15", | ||
"svelte-check": "^3.7.1", | ||
"svelte-preprocess": "^5.1.4", | ||
"tailwindcss": "^3.4.3", | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.4.5", | ||
"vite": "^5.2.11" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
const tailwindcss = require("tailwindcss"); | ||
const autoprefixer = require("autoprefixer"); | ||
|
||
const config = { | ||
plugins: [ | ||
//Some plugins, like tailwindcss/nesting, need to run before Tailwind, | ||
tailwindcss(), | ||
//But others, like autoprefixer, need to run after, | ||
autoprefixer, | ||
], | ||
}; | ||
|
||
module.exports = config; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/* Write your global styles here, in PostCSS syntax */ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.