Skip to content

Commit f9abbae

Browse files
authored
Rename project to fuji-web (#167)
* refactor: rename project to fuji-web * refactor: use new logo
1 parent 338a2bf commit f9abbae

File tree

14 files changed

+26
-28
lines changed

14 files changed

+26
-28
lines changed

.github/workflows/build-zip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ jobs:
3131

3232
- uses: actions/upload-artifact@v3
3333
with:
34-
name: webwand
34+
name: fuji-extension
3535
path: dist/*

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="public/icon-128.png" alt="Web Wand Logo" width="100"/>
1+
<img src="public/icon-128.png" alt="Fuji-web Logo" width="100"/>
22

33
# WebWand: Vision based Full Browser Automation 🪄
44

@@ -24,7 +24,7 @@ We do NOT collect your screenshots, browsing information or your prompts. It liv
2424

2525
### Download and Install the extension in your browser
2626

27-
1. Go to the [releases page](https://github.com/normal-computing/web-wand/releases), find the latest version of the extension and download "webwand.zip".
27+
1. Go to the [releases page](https://github.com/normal-computing/fuji-web/releases), find the latest version of the extension and download "webwand.zip".
2828
2. Unzip the file.
2929
3. Load your extension on Chrome by doing the following:
3030
1. Navigate to `chrome://extensions/`
@@ -78,4 +78,4 @@ We also encourage everyone in the community to add new knowledge to the "Prior K
7878
- WebWand's image annotation method was inspired by Microsoft's [UFO paper](https://arxiv.org/abs/2402.07939).
7979
- Web Agent as a tool that lives in the browser sidepanel was inspired by [TaxyAI's browser extension](https://github.com/TaxyAI/browser-extension). We also used some of its UI code.
8080
- The Chrome extension set-up leveraged an awesome boilerplate project [Jonghakseo/chrome-extension-boilerplate-react-vite](https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite).
81-
- The WebWand logo was designed by [Mengdi](https://twitter.com/mengdi_en).
81+
- The Fuji logo is from [Toss Face](https://emojipedia.org/toss-face) Emoji design set.

TROUBLESHOOTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Troubleshooting Guide for WebWand
22

3-
This guide aims to help you diagnose and resolve common problems you might encounter. If you're still facing difficulties after following these steps, please reach out to us through our [GitHub Issues](https://github.com/normal-computing/web-wand/issues).
3+
This guide aims to help you diagnose and resolve common problems you might encounter. If you're still facing difficulties after following these steps, please reach out to us through our [GitHub Issues](https://github.com/normal-computing/fuji-web/issues).
44

55

66
## Common Issues and Solutions

manifest.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import packageJson from "./package.json" assert { type: "json" };
66
*/
77
const manifest = {
88
manifest_version: 3,
9-
name: "Web Wand",
9+
name: "Fuji",
1010
version: packageJson.version,
1111
description: packageJson.description,
1212
permissions: [
@@ -31,7 +31,7 @@ const manifest = {
3131
action: {
3232
// default_popup: 'src/pages/popup/index.html',
3333
default_title: "Click to open side panel",
34-
default_icon: "icon-34.png",
34+
default_icon: "icon-128.png",
3535
},
3636
icons: {
3737
128: "icon-128.png",
@@ -52,7 +52,6 @@ const manifest = {
5252
"assets/css/*.css",
5353
"assets/fonts/*",
5454
"icon-128.png",
55-
"icon-34.png",
5655
"src/pages/permission/index.html",
5756
"src/pages/permission/requestPermissions.ts",
5857
],

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "web-wand",
2+
"name": "fuji-web",
33
"version": "2.1.0",
4-
"description": "WebWand is a tool that redefines web interaction, making complex online tasks as simple as uttering a single command.",
4+
"description": "A tool that redefines web interaction, making complex online tasks as simple as uttering a single command.",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/normal-computing/web-wand"
7+
"url": "https://github.com/normal-computing/fuji-web"
88
},
99
"scripts": {
1010
"build": "tsc --noEmit && vite build",

public/icon-128.png

-85.3 KB
Loading

public/icon-34.png

-18.5 KB
Binary file not shown.

src/common/App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const App = () => {
2626
<Box p="8" pb="24" fontSize="lg" w="full">
2727
<HStack mb={4} alignItems="center">
2828
<Heading as="h1" size="lg" flex={1}>
29-
WebWand 🪄
29+
Fuji 🗻
3030
</Heading>
3131
{hasAPIKey && (
3232
<IconButton
@@ -68,15 +68,15 @@ const App = () => {
6868
wrap="wrap"
6969
>
7070
<Link
71-
href="https://github.com/normal-computing/web-wand#readme"
71+
href="https://github.com/normal-computing/fuji-web#readme"
7272
isExternal
7373
>
7474
About this project
7575
</Link>
7676
<Link href="https://forms.gle/isLeGyUvoKGiqT8W8" isExternal>
7777
Leave Feedback
7878
</Link>
79-
<Link href="https://github.com/normal-computing/web-wand" isExternal>
79+
<Link href="https://github.com/normal-computing/fuji-web" isExternal>
8080
GitHub <Icon verticalAlign="text-bottom" as={FaGithub} />
8181
</Link>
8282
<Link href="https://discord.gg/yfMjZ8udb5" isExternal>

src/common/RecommendedTasks.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Button, VStack, Text } from "@chakra-ui/react";
22
import { useAppState } from "../state/store";
33

44
const tasks = [
5-
'Post on twitter.com with content "an automated post from WebWand by @NormalComputing! :)" If I\'m not logged in, fail the task and wait for me to log in.',
5+
'Post on twitter.com with content "An automated post from Fuji-Web by @NormalComputing! :)" If I\'m not logged in, fail the task and wait for me to log in.',
66
"Find a book about AI and add a physical copy to cart on Amazon.com. Pick the cheaper one from paperback and hardcover.",
77
];
88

@@ -38,7 +38,7 @@ const RecommendedTasks = ({
3838
Post on twitter.com
3939
</Text>
4040
<Text fontWeight={400} noOfLines={1} color="gray">
41-
with content &quot;an automated post from WebWand by
41+
with content &quot;An automated post from Fuji-Web by
4242
@NormalComputing!&quot;
4343
</Text>
4444
</Button>

src/common/SetAPIKey.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const SetAPIKey = ({
6060
return (
6161
<VStack spacing={4}>
6262
<Text fontSize="sm">
63-
You&rsquo;ll need an OpenAI or Anthropic API Key to run the WebWand in
63+
You&rsquo;ll need an OpenAI or Anthropic API Key to run the Fuji in
6464
developer mode. If you don&rsquo;t already have one available, you can
6565
create one in your{" "}
6666
<Link
@@ -81,8 +81,8 @@ const SetAPIKey = ({
8181
.
8282
<br />
8383
<br />
84-
WebWand stores your API keys locally on your device, and they are only
85-
used to communicate with the OpenAI API and/or the Anthropic API.
84+
Fuji stores your API keys locally on your device, and they are only used
85+
to communicate with the OpenAI API and/or the Anthropic API.
8686
</Text>
8787
<Box position="relative" py="2" w="full">
8888
<Divider />

0 commit comments

Comments
 (0)