This commit is contained in:
Alyssa X 2022-01-12 11:42:27 +01:00
parent 75bd642df6
commit 69b7d05cdd
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ $(document).ready(function(){
// Add actions to the omni
function populateOmni() {
$("#omni-extension #list").html("");
$("#omni-extension #omni-list").html("");
actions.forEach(function(action, index){
var keys = "";
if (action.keycheck) {
@ -152,7 +152,7 @@ $(document).ready(function(){
if ($(".omni-extension input").val().toLowerCase().startsWith("/remove")) {
chrome.runtime.sendMessage({request:"remove", type:action.type, action:action});
} else if ($(".omni-extension input").val().toLowerCase().startsWith("/history")) {
window.open($(".item-active").attr("data-url"), "_self");
window.open($(".omni-item-active").attr("data-url"), "_self");
} else {
chrome.runtime.sendMessage({request:action.action, tab:action});
if (action.action == "bookmark") {

View file

@ -2,7 +2,7 @@
"name": "Omni",
"description": "Supercharge Chrome with commands, shortcuts, and more",
"offline_enabled": true,
"version": "1.0.4",
"version": "1.0.5",
"manifest_version": 3,
"action": {
"icons": {