Skip to content

Commit

Permalink
Adding /dist for release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Di Benedetto authored and Marco Di Benedetto committed Feb 21, 2021
1 parent ba4f16a commit 2604c17
Show file tree
Hide file tree
Showing 12 changed files with 304 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dist/background.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions dist/bootstrap.bundle.min.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions dist/bootstrap.min.css

Large diffs are not rendered by default.

Binary file added dist/images/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/images/icon-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/images/icon-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/images/icon-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/images/icon-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 85 additions & 0 deletions dist/manifest.json
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
}
1 change: 1 addition & 0 deletions dist/popup.css

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

16 changes: 16 additions & 0 deletions dist/popup.html
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>
186 changes: 186 additions & 0 deletions dist/popup.js

Large diffs are not rendered by default.

0 comments on commit 2604c17

Please sign in to comment.