Skip to content

Commit

Permalink
FlashBrowser v0.7 ( Include Sources )
Browse files Browse the repository at this point in the history
Add Find on Page with ctrl+F and Electron Navigation module
  • Loading branch information
radubirsan committed Jan 5, 2022
1 parent fb0dec5 commit 1d7a360
Show file tree
Hide file tree
Showing 170 changed files with 55,424 additions and 117 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file added ._package.json
Binary file not shown.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
release_
FlashBrowser-linux-arm64
FlashBrowser-linux-armv7l
FlashBrowser-linux-ia32
FlashBrowser-linux-x64
FlashBrowser-win32-arm64
FlashBrowser-win32-ia32
FlashBrowser-win32-x64
flashver/

*.js
43 changes: 3 additions & 40 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,3 @@
# Flash Browser (please give us a :star:)
A browser dedicating to supporting adobe flash.
Run flash player in browser on:

Windows 10
:link: [Download Installer](https://github.com/radubirsan/FlashBrowser/releases) (86 MB)

MacOS
:link: [Download Installer](https://github.com/radubirsan/FlashBrowser/releases/tag/v0.2) (268 MB)

Linux (tested on Ubuntu)
:link: [Download Installer](https://github.com/radubirsan/FlashBrowser/releases/tag/v0.01) ([Run flash on Ubuntu tutorial](https://flash.pm/2021/09/23/run-flash-player-on-linux-ubuntu-with-flashbrowser-in-14-steps/))

# How do I use it?
How to Enable Adobe Flash Player on Chrome Browser?

<br/>![Capture](https://wethegeek.com/wp-content/uploads/2021/07/Adobe-Flash-Player.png)
<br/>![Captures](https://images-na.ssl-images-amazon.com/images/I/A1p%2BBYQK5BL.png)

How to install flash player browser video:

:movie_camera: Windows:
https://www.youtube.com/watch?v=Cv3umbqlw1g&t=1s

:movie_camera: Mac:
https://www.youtube.com/watch?v=NZFzMEZ9l-Y

# Websites with flash games:
http://fancyplanet.org/ </br>
https://itch.io/games/flash <br/>
http://mystreous.0fees.net/oyunlar/ <br/>
http://www.kanogames.com/play/game/robokill <br/>
http://www.stickpage.com <br/>
https://dovga.com/games <br/>
https://www.siftheadsgames.com/Sift-Heads-Renegade-2.html <br/>
http://web.archive.org/web/20140818215300/http://www.nitrome.com/games/bumpbattleroyale/#.U_J11DO286Q<br/>
<!--- #Learn AS3:
https://www.webfx.com/blog/web-design/flash_tutorial_websites/<br/> -->

[Download Count](https://hanadigital.github.io/grev/?user=radubirsan&repo=FlashBrowser2)
# Flash-Browser
Flash Player enabled browser
https://github.com/radubirsan/FlashBrowser
13 changes: 8 additions & 5 deletions browser.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@
const store = new Store({
configName: 'user-preferences'
});

let home = store.get('homepage');

let home
try{
home = store.get('homepage');
}
catch (error) {
home = null;
}
const enav = new (require('electron-navigation'))({
defaultFavicons: true,
newTabCallback: (url, options) => {
Expand Down Expand Up @@ -73,8 +77,7 @@
enav.newTab('https://search.flash.pm/', {icon: "clear"});
}






</script>
Expand Down
5 changes: 5 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,11 @@ app.on('ready', () => {
}

});

globalShortcut.register('CommandOrControl+F', () => {
mainWindow.webContents.send('on-find');
});

globalShortcut.register("CTRL+SHIFT+I", () => {
mainWindow.webContents.openDevTools();
});
Expand Down
21 changes: 21 additions & 0 deletions node_modules/electron-navigation/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions node_modules/electron-navigation/demos/demo1-horizontal-light.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

88 changes: 88 additions & 0 deletions node_modules/electron-navigation/demos/demo2-vertical-dark.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1d7a360

Please sign in to comment.