Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
crx-ready as popup; not published to store
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay7394 committed Apr 3, 2023
0 parents commit fae222b
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Bing AI in ~~Edge~~ any browser

## Requirements
1. A Chromium-based browser *(Chrome, Arc, Vivaldi, etc)*
2.
Binary file added icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icon16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icon32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"manifest_version": 3,
"name": "Bing AI",
"version": "1.0",
"description": "This extension opens Bing AI in a popup.",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"command": "launch-popup"
},

"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": ["activeTab"],
"commands": {
"launch-popup": {
"suggested_key": {
"default": "Alt+E"
},
"description": "Open Bing AI in a popup"
}
}

}
18 changes: 18 additions & 0 deletions popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Bing AI</title>
</head>
<body>
<div style="height: 550px; width: 400px; border-radius: 10px;">
<iframe id="underside-iframe-container" name="underside-iframe-container" src="https://edgeservices.bing.com/edgediscover/query?&lightschemeovr=1&FORM=SHORUN&udscs=1&udsnav=1&setlang=en-US&features=udssydinternal&clientscopes=windowheader,coauthor,chat,&udsframed=1" frameborder="0" allow="clipboard-write"></iframe>
</div>

<style>
#underside-iframe-container {
height: 100%;
width: 100%;
}
</style>
</body>
</html>

0 comments on commit fae222b

Please sign in to comment.