Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
SiddhantAttavar committed Aug 2, 2021
1 parent 5175e99 commit f4404ed
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# BrowserToys-Extension
A browser extension that contains many tools to help you while browsing and extend the functionality of your browser
A browser extension that contains many tools to help you while browsing and extend the functionality of your browser. It runs on any browser that supports the [WebExtensions API](https://developer.mozilla.org/en-US/Add-ons/WebExtensions).

This extension adds the following features to your browser:
- Creates a new tab to the immediate right of the current tab and in the same tab group when using Ctrl+T
- Autoconfirms the `Video paused. Continue watching?` message when using Youtube or Youtube Music (Original source code from [YoutubeNonStop](https://github.com/lawfx/YoutubeNonStop))

# How to install
- Download the BrowserToys.crx file from the [releases page](https://github.com/SiddhantAttavar/BrowserToys-Extension/releases)
- Open the browser and go to `chrome://extensions`
- Drag and drop the file onto the page
- Restart the browser

You may get a warning that the extension is disabled. To remove this warning, do the following:
- Go to the `chrome://extensions` page
- Navigate to the extension page
- Copy the extension ID
- Open regedit.msc and navigate to SOFTWARE\Policies\Microsoft\Edge\ExtensionInstallAllowlist
- Add the extension ID to the list (change value 1 to the extension ID)
- Close regedit.msc and restart the browser
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 2,
"name": "Edge Customizer",
"name": "BrowserToys",
"description": "Provides various browser scripts",
"version": "1",
"permissions": ["tabs", "declarativeContent"],
Expand All @@ -16,7 +16,7 @@
],
"incognito": "split",
"browser_action": {
"default_title": "Edge Customizer"
"default_title": "BrowserToys"
},
"icons": {"128": "icon.png"},
"commands": {
Expand Down

0 comments on commit f4404ed

Please sign in to comment.