├── .github └── ISSUE_TEMPLATE │ ├── bug.md │ ├── feature.md │ └── question.md ├── .gitignore ├── .prettierrc ├── README.md ├── docs ├── INSTALLATION.md └── images │ ├── image0.png │ ├── image1.png │ └── image2.png └── src ├── background.js ├── css ├── popup_style.css └── style.css ├── index.js ├── lib ├── anime.min.js ├── drag-on-drop.js ├── jquery.min.js ├── mdui.min.css ├── mdui.min.js └── vue.global.prod.js ├── manifest.json ├── popup.html ├── popup.js └── static ├── icon ├── icon_128.png ├── icon_16.png ├── icon_32.png └── icon_48.png ├── img ├── ava │ ├── chasing.gif │ ├── chasing.png │ ├── happy.gif │ ├── happy.png │ ├── interact_1.gif │ ├── interact_1.png │ ├── interact_2.gif │ ├── interact_2.png │ ├── interact_3.gif │ ├── interact_3.png │ ├── interact_4.gif │ ├── interact_4.png │ ├── interact_5.gif │ ├── interact_5.png │ ├── interact_6.gif │ ├── interact_6.png │ ├── interact_7.gif │ ├── interact_7.png │ ├── interact_8.gif │ ├── interact_8.png │ ├── interact_9.gif │ ├── interact_9.png │ ├── thinking.gif │ ├── thinking.png │ ├── unhappy.gif │ └── unhappy.png ├── bella │ ├── chasing.gif │ ├── chasing.png │ ├── happy.gif │ ├── happy.png │ ├── interact_1.gif │ ├── interact_1.png │ ├── interact_2.gif │ ├── interact_2.png │ ├── interact_3.gif │ ├── interact_3.png │ ├── interact_4.gif │ ├── interact_4.png │ ├── interact_5.gif │ ├── interact_5.png │ ├── interact_6.gif │ ├── interact_6.png │ ├── interact_7.gif │ ├── interact_7.png │ ├── interact_8.gif │ ├── interact_8.png │ ├── interact_9.gif │ ├── interact_9.png │ ├── thinking.gif │ ├── thinking.png │ ├── unhappy.gif │ └── unhappy.png ├── bowl.png ├── candy.png ├── carol │ ├── chasing.gif │ ├── chasing.png │ ├── happy.gif │ ├── happy.png │ ├── interact_1.gif │ ├── interact_1.png │ ├── interact_2.gif │ ├── interact_2.png │ ├── interact_3.gif │ ├── interact_3.png │ ├── interact_4.gif │ ├── interact_4.png │ ├── interact_5.gif │ ├── interact_5.png │ ├── interact_6.gif │ ├── interact_6.png │ ├── interact_7.gif │ ├── interact_7.png │ ├── interact_8.gif │ ├── interact_8.png │ ├── interact_9.gif │ ├── interact_9.png │ ├── thinking.gif │ ├── thinking.png │ ├── unhappy.gif │ └── unhappy.png ├── diana │ ├── chasing.gif │ ├── chasing.png │ ├── happy.gif │ ├── happy.png │ ├── interact_1.gif │ ├── interact_1.png │ ├── interact_2.gif │ ├── interact_2.png │ ├── interact_3.gif │ ├── interact_3.png │ ├── interact_4.gif │ ├── interact_4.png │ ├── interact_5.gif │ ├── interact_5.png │ ├── interact_6.gif │ ├── interact_6.png │ ├── interact_7.gif │ ├── interact_7.png │ ├── interact_8.gif │ ├── interact_8.png │ ├── interact_9.gif │ ├── interact_9.png │ ├── thinking.gif │ ├── thinking.png │ ├── unhappy.gif │ └── unhappy.png ├── eileen │ ├── chasing.gif │ ├── chasing.png │ ├── happy.gif │ ├── happy.png │ ├── interact_1.gif │ ├── interact_1.png │ ├── interact_2.gif │ ├── interact_2.png │ ├── interact_3.gif │ ├── interact_3.png │ ├── interact_4.gif │ ├── interact_4.png │ ├── interact_5.gif │ ├── interact_5.png │ ├── interact_6.gif │ ├── interact_6.png │ ├── interact_7.gif │ ├── interact_7.png │ ├── interact_8.gif │ ├── interact_8.png │ ├── interact_9.gif │ ├── interact_9.png │ ├── thinking.gif │ ├── thinking.png │ ├── unhappy.gif │ └── unhappy.png ├── icecream.png ├── knight.png └── star.png └── message.json /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/README.md -------------------------------------------------------------------------------- /docs/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/docs/INSTALLATION.md -------------------------------------------------------------------------------- /docs/images/image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/docs/images/image0.png -------------------------------------------------------------------------------- /docs/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/docs/images/image1.png -------------------------------------------------------------------------------- /docs/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/docs/images/image2.png -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/background.js -------------------------------------------------------------------------------- /src/css/popup_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/css/popup_style.css -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/css/style.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/anime.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/lib/anime.min.js -------------------------------------------------------------------------------- /src/lib/drag-on-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/lib/drag-on-drop.js -------------------------------------------------------------------------------- /src/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/lib/jquery.min.js -------------------------------------------------------------------------------- /src/lib/mdui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/lib/mdui.min.css -------------------------------------------------------------------------------- /src/lib/mdui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/lib/mdui.min.js -------------------------------------------------------------------------------- /src/lib/vue.global.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/lib/vue.global.prod.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/popup.js -------------------------------------------------------------------------------- /src/static/icon/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/icon/icon_128.png -------------------------------------------------------------------------------- /src/static/icon/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/icon/icon_16.png -------------------------------------------------------------------------------- /src/static/icon/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/icon/icon_32.png -------------------------------------------------------------------------------- /src/static/icon/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/icon/icon_48.png -------------------------------------------------------------------------------- /src/static/img/ava/chasing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/chasing.gif -------------------------------------------------------------------------------- /src/static/img/ava/chasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/chasing.png -------------------------------------------------------------------------------- /src/static/img/ava/happy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/happy.gif -------------------------------------------------------------------------------- /src/static/img/ava/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/happy.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_1.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_1.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_2.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_2.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_3.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_3.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_4.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_4.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_5.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_5.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_6.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_6.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_7.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_7.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_8.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_8.png -------------------------------------------------------------------------------- /src/static/img/ava/interact_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_9.gif -------------------------------------------------------------------------------- /src/static/img/ava/interact_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/interact_9.png -------------------------------------------------------------------------------- /src/static/img/ava/thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/thinking.gif -------------------------------------------------------------------------------- /src/static/img/ava/thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/thinking.png -------------------------------------------------------------------------------- /src/static/img/ava/unhappy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/unhappy.gif -------------------------------------------------------------------------------- /src/static/img/ava/unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/ava/unhappy.png -------------------------------------------------------------------------------- /src/static/img/bella/chasing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/chasing.gif -------------------------------------------------------------------------------- /src/static/img/bella/chasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/chasing.png -------------------------------------------------------------------------------- /src/static/img/bella/happy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/happy.gif -------------------------------------------------------------------------------- /src/static/img/bella/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/happy.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_1.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_1.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_2.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_2.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_3.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_3.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_4.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_4.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_5.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_5.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_6.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_6.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_7.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_7.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_8.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_8.png -------------------------------------------------------------------------------- /src/static/img/bella/interact_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_9.gif -------------------------------------------------------------------------------- /src/static/img/bella/interact_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/interact_9.png -------------------------------------------------------------------------------- /src/static/img/bella/thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/thinking.gif -------------------------------------------------------------------------------- /src/static/img/bella/thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/thinking.png -------------------------------------------------------------------------------- /src/static/img/bella/unhappy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/unhappy.gif -------------------------------------------------------------------------------- /src/static/img/bella/unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bella/unhappy.png -------------------------------------------------------------------------------- /src/static/img/bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/bowl.png -------------------------------------------------------------------------------- /src/static/img/candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/candy.png -------------------------------------------------------------------------------- /src/static/img/carol/chasing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/chasing.gif -------------------------------------------------------------------------------- /src/static/img/carol/chasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/chasing.png -------------------------------------------------------------------------------- /src/static/img/carol/happy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/happy.gif -------------------------------------------------------------------------------- /src/static/img/carol/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/happy.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_1.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_1.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_2.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_2.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_3.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_3.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_4.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_4.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_5.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_5.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_6.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_6.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_7.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_7.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_8.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_8.png -------------------------------------------------------------------------------- /src/static/img/carol/interact_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_9.gif -------------------------------------------------------------------------------- /src/static/img/carol/interact_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/interact_9.png -------------------------------------------------------------------------------- /src/static/img/carol/thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/thinking.gif -------------------------------------------------------------------------------- /src/static/img/carol/thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/thinking.png -------------------------------------------------------------------------------- /src/static/img/carol/unhappy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/unhappy.gif -------------------------------------------------------------------------------- /src/static/img/carol/unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/carol/unhappy.png -------------------------------------------------------------------------------- /src/static/img/diana/chasing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/chasing.gif -------------------------------------------------------------------------------- /src/static/img/diana/chasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/chasing.png -------------------------------------------------------------------------------- /src/static/img/diana/happy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/happy.gif -------------------------------------------------------------------------------- /src/static/img/diana/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/happy.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_1.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_1.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_2.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_2.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_3.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_3.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_4.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_4.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_5.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_5.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_6.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_6.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_7.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_7.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_8.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_8.png -------------------------------------------------------------------------------- /src/static/img/diana/interact_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_9.gif -------------------------------------------------------------------------------- /src/static/img/diana/interact_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/interact_9.png -------------------------------------------------------------------------------- /src/static/img/diana/thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/thinking.gif -------------------------------------------------------------------------------- /src/static/img/diana/thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/thinking.png -------------------------------------------------------------------------------- /src/static/img/diana/unhappy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/unhappy.gif -------------------------------------------------------------------------------- /src/static/img/diana/unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/diana/unhappy.png -------------------------------------------------------------------------------- /src/static/img/eileen/chasing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/chasing.gif -------------------------------------------------------------------------------- /src/static/img/eileen/chasing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/chasing.png -------------------------------------------------------------------------------- /src/static/img/eileen/happy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/happy.gif -------------------------------------------------------------------------------- /src/static/img/eileen/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/happy.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_1.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_1.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_2.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_2.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_3.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_3.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_4.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_4.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_5.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_5.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_6.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_6.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_7.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_7.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_8.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_8.png -------------------------------------------------------------------------------- /src/static/img/eileen/interact_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_9.gif -------------------------------------------------------------------------------- /src/static/img/eileen/interact_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/interact_9.png -------------------------------------------------------------------------------- /src/static/img/eileen/thinking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/thinking.gif -------------------------------------------------------------------------------- /src/static/img/eileen/thinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/thinking.png -------------------------------------------------------------------------------- /src/static/img/eileen/unhappy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/unhappy.gif -------------------------------------------------------------------------------- /src/static/img/eileen/unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/eileen/unhappy.png -------------------------------------------------------------------------------- /src/static/img/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/icecream.png -------------------------------------------------------------------------------- /src/static/img/knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/knight.png -------------------------------------------------------------------------------- /src/static/img/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/img/star.png -------------------------------------------------------------------------------- /src/static/message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZiuChen/A-Soul-Browser-Pet/HEAD/src/static/message.json --------------------------------------------------------------------------------