├── .gitignore ├── extension ├── logo.png ├── logo128.png ├── logo256.png ├── logo32.png ├── logo64.png └── manifest.json ├── screenshots ├── chrome.png └── logo64.png ├── LICENSE ├── logo.svg ├── logoV3.svg └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /extension/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew6rant/LightningReopenV3/HEAD/extension/logo.png -------------------------------------------------------------------------------- /extension/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew6rant/LightningReopenV3/HEAD/extension/logo128.png -------------------------------------------------------------------------------- /extension/logo256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew6rant/LightningReopenV3/HEAD/extension/logo256.png -------------------------------------------------------------------------------- /extension/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew6rant/LightningReopenV3/HEAD/extension/logo32.png -------------------------------------------------------------------------------- /extension/logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew6rant/LightningReopenV3/HEAD/extension/logo64.png -------------------------------------------------------------------------------- /screenshots/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew6rant/LightningReopenV3/HEAD/screenshots/chrome.png -------------------------------------------------------------------------------- /screenshots/logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrew6rant/LightningReopenV3/HEAD/screenshots/logo64.png -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Lightning Reopen V3", 3 | "version": "1.0.0", 4 | "description": "Keep your browser loaded in the background for faster re-opening", 5 | "permissions": [ 6 | "background" 7 | ], 8 | "icons": { 9 | "16": "logo.png", 10 | "32": "logo32.png", 11 | "64": "logo64.png", 12 | "128": "logo128.png", 13 | "256": "logo256.png" 14 | }, 15 | "manifest_version": 3 16 | } 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logoV3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | V3 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Lightning Reopen V3

2 | 3 | Forked version of [SeinopSys' LightningReopen](https://github.com/SeinopSys/LightningReopen), with Manifest V3 support. ([#7](https://github.com/SeinopSys/LightningReopen/issues/7)) 4 | 5 | This extension keeps Chromium-based browsers (Chrome, Vivaldi, Opera, Brave, etc.) loaded in the background, allowing for quick re-opening. 6 | 7 | Lightning Reopen V3 is not compatible with non-chromium browsers such as Firefox, Safari, or Lynx. It is also not needed on Edge (as Edge implements the functionality of this extension itself: https://www.microsoft.com/en-us/edge/features/startup-boost). 8 | 9 | Lightning Reopen V3 has no access to your browsing data. The extension does not have any tracking or analytics functionality, will never be sold, and will always be fully open-sourced. 10 | 11 |
12 | Original LightningReopen README: 13 | 14 | 15 |

Lightning Reopen for Chrome

16 | 17 | Do you have a million extensions installed that take absolutely ages to load when you open a new Chrome window, causing freezes and stuttering? Do you want to get notifications from your browser extensions without having to keep a Chrome window open and cluttering your taskbar? Do you have more RAM than you know what to do with? 18 | 19 | If you answered yes to at least one of the questions above then this extension is for you! After installing, Chrome will sit in your notification area and remain open in the background, which means that when you open a new Chrome window all your extensions will not need to re-initialize themselves resulting in a lot faster startup and next to no lag. 20 | 21 | For the longest time I've been just installing Dropbox for Gmail on all my machines to get this effect, but taking a look at what permissions it has made me realize that maybe I should not be doing that. I decided to make my own background extension with blackjack and hookers no permissions, no cryptominers and no API calls "phoning home". 22 | 23 | That's right, this extension literally has no way to access any of your personal data anywhere while you're browsing, its only purpose is to let you keep Chrome in the background. Even if at any point the extension were to be compromised you would be prompted for any extra permissions, which you should never agree to. You have my word that this extension will **never** be sold to any shady extension marketing company looking to inject ads and/or trackers into every page you visit. If you are interested in seeing how many people did not read this paragraph, feel free to check out [issue #4](https://github.com/SeinopSys/LightningReopen/issues/4) where I share screenshots of e-mails from people and organizations attempting to buy the extension off me. 24 | 25 |

Download Lightning Reopen from the Chrome Web Store

26 | 27 |

Download YTMySubs from the Chrome Web Store

28 | 29 |
--------------------------------------------------------------------------------