This repository was archived by the owner on Apr 27, 2023. It is now read-only.
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -109,11 +109,11 @@ async function saveSettings(searchHistory) {
109
109
await browser . storage . sync . set ( { searchHistory : [ ...searchHistory ] } ) ;
110
110
}
111
111
112
- chrome . browserAction . onClicked . addListener ( ( ) => {
112
+ browser . browserAction . onClicked . addListener ( ( ) => {
113
113
toggleSaka ( ) ;
114
114
} ) ;
115
115
116
- chrome . commands . onCommand . addListener ( command => {
116
+ browser . commands . onCommand . addListener ( command => {
117
117
switch ( command ) {
118
118
case 'toggleSaka' :
119
119
case 'toggleSaka2' :
@@ -126,7 +126,7 @@ chrome.commands.onCommand.addListener(command => {
126
126
}
127
127
} ) ;
128
128
129
- chrome . runtime . onMessage . addListener ( async ( message , sender ) => {
129
+ browser . runtime . onMessage . addListener ( async ( message , sender ) => {
130
130
switch ( message . key ) {
131
131
case 'toggleSaka' :
132
132
toggleSaka ( ) ;
@@ -140,7 +140,7 @@ chrome.runtime.onMessage.addListener(async (message, sender) => {
140
140
}
141
141
} ) ;
142
142
143
- chrome . runtime . onMessageExternal . addListener ( message => {
143
+ browser . runtime . onMessageExternal . addListener ( message => {
144
144
switch ( message ) {
145
145
case 'toggleSaka' :
146
146
toggleSaka ( ) ;
@@ -150,7 +150,7 @@ chrome.runtime.onMessageExternal.addListener(message => {
150
150
}
151
151
} ) ;
152
152
153
- chrome . contextMenus . create ( {
153
+ browser . contextMenus . create ( {
154
154
title : 'Saka' ,
155
155
contexts : [ 'all' ] ,
156
156
onclick : ( ) => toggleSaka ( )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Saka" ,
3
- "version" : " 0.16.0 " ,
3
+ "version" : " 0.16.1 " ,
4
4
"author" : " Sufyan Dawoodjee, Uzair Shamim" ,
5
5
"description" : " Saka - elegent tab search, selection, and beyond" ,
6
6
"manifest_version" : 2 ,
You can’t perform that action at this time.
0 commit comments