-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marco Di Benedetto
authored and
Marco Di Benedetto
committed
Feb 21, 2021
1 parent
ba4f16a
commit 2604c17
Showing
12 changed files
with
304 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"name": "TabMania", | ||
"version": "1.0", | ||
"description": "A simple tab manager enabling some essential keyboard shortcuts", | ||
"permissions": [ | ||
"tabs", | ||
"storage", | ||
"clipboardRead" | ||
], | ||
"background": { | ||
"scripts": [ "background.js" ], | ||
"persistent": true | ||
}, | ||
|
||
"commands": { | ||
"00back": { | ||
"suggested_key": { | ||
"default": "Ctrl + Shift + Left" | ||
}, | ||
"description": "Go back to the last active tab", | ||
"global": false | ||
}, | ||
"01fwd": { | ||
"suggested_key": { | ||
"default": "Ctrl + Shift + Right" | ||
}, | ||
"description": "Go forward to the next active tab", | ||
"global": false | ||
}, | ||
"02los": { | ||
"suggested_key": { | ||
"default": "Ctrl + Shift + Down" | ||
}, | ||
"description": "Clipboard launch/search: open a new tab using the clipboard value as URL or search text", | ||
"global": true | ||
}, | ||
"03closeback": { | ||
"description": "Close the current tab and go back to the last active tab", | ||
"global": false | ||
}, | ||
"04closefwd": { | ||
"description": "Close the current tab and go forward to the next active tab", | ||
"global": false | ||
}, | ||
"90shortcut": { | ||
"description": "Custom shortcut 1: open a configured tab", | ||
"global": true | ||
}, | ||
"91shortcut": { | ||
"description": "Custom shortcut 2: open a configured tab", | ||
"global": true | ||
}, | ||
"92shortcut": { | ||
"description": "Custom shortcut 3: open a configured tab", | ||
"global": true | ||
}, | ||
"93shortcut": { | ||
"description": "Custom shortcut 4: open a configured tab", | ||
"global": true | ||
}, | ||
"94shortcut": { | ||
"description": "Custom shortcut 5: open a configured tab", | ||
"global": true | ||
} | ||
}, | ||
|
||
"browser_action": { | ||
"default_popup": "popup.html", | ||
|
||
"default_icon": { | ||
"16": "images/icon-16.png", | ||
"32": "images/icon-32.png", | ||
"48": "images/icon-48.png", | ||
"128": "images/icon-128.png" | ||
} | ||
}, | ||
"icons": { | ||
"16": "images/icon-16.png", | ||
"32": "images/icon-32.png", | ||
"48": "images/icon-48.png", | ||
"128": "images/icon-128.png" | ||
}, | ||
|
||
"manifest_version": 2 | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<link href="bootstrap.min.css" rel="stylesheet"> | ||
<link href="popup.css" rel="stylesheet"> | ||
|
||
<script src="popup.js"></script> | ||
</head> | ||
<body style="width: 400px;"> | ||
<div id="popup-tabs-div"></div> | ||
<script src="bootstrap.bundle.min.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.