Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
fl2on authored Jun 25, 2024
1 parent 1532304 commit c83a83d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 13 deletions.
Binary file modified logo128x128.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 modified logo16x16.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 modified logo48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"Copilot Chat Pro™",
"version":"0.0.1",
"version":"0.0.2",
"manifest_version":3,
"description":"Unlimited characters in chatbox. (4000 -> ∞)",
"icons":{
Expand All @@ -12,7 +12,7 @@
"content_scripts": [
{
"matches": [
"*://www.bing.com/search*",
"*://www.bing.com/*",
"https://copilot.microsoft.com/*"
],
"js": ["unlimited.js"],
Expand All @@ -25,4 +25,4 @@
},
"author":"Qzxtu",
"homepage_url":"https://github.com/qzxtu"
}
}
11 changes: 1 addition & 10 deletions unlimited.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
(() => {
const urlPattern = {
matches: [
"*://www.bing.com/search*",
"https://copilot.microsoft.com/*",
]
};

async function removeCharLimit() {
try {
const searchInput = document.querySelector("#sb_form_q");
if (searchInput) searchInput.removeAttribute("maxlength");

document.querySelector("#sb_chcounter_r")?.remove();

const serp = document.querySelector("#b_sydConvCont > cib-serp");
if (!serp) throw new Error("Elemento cib-serp no encontrado.");

Expand Down Expand Up @@ -43,4 +34,4 @@
setInterval(initializeExtension, 3000);
window.addEventListener("load", initializeExtension);
window.addEventListener("popstate", initializeExtension);
})();
})();

0 comments on commit c83a83d

Please sign in to comment.