Skip to content

Commit

Permalink
Fix extension popup not appearing
Browse files Browse the repository at this point in the history
  • Loading branch information
killergerbah committed Mar 14, 2021
1 parent 3cc7863 commit 12fa6d8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions client/src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import SettingsDialog from './SettingsDialog.js';
import SettingsProvider from '../services/SettingsProvider.js';
import VideoPlayer from './VideoPlayer.js';

const latestExtensionVersion = "0.4.1";
const latestExtensionVersion = "0.4.2";
const extensionUrl = "https://github.com/killergerbah/asbplayer/releases/latest";

const useStyles = drawerWidth => makeStyles((theme) => ({
Expand Down Expand Up @@ -479,4 +479,4 @@ function App() {
);
}

export default App;
export default App;
4 changes: 2 additions & 2 deletions extension/asbplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ window.addEventListener('DOMContentLoaded', (e) => {
sender: 'asbplayer-extension-to-player',
message: {
command: 'version',
version: '0.4.1'
version: '0.4.2'
}
});
});
});
6 changes: 3 additions & 3 deletions extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "asbplayer",
"description": "Sync asbplayer with streaming video",
"version": "0.4.1",
"version": "0.4.2",
"manifest_version": 2,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": ["tabs", "tabCapture", "storage"],
"action": {
"browser_action": {
"default_title": "asbplayer",
"default_popup": "popup.html"
},
Expand Down Expand Up @@ -41,4 +41,4 @@
}
},
"web_accessible_resources": ["netflix.js"]
}
}

0 comments on commit 12fa6d8

Please sign in to comment.