Skip to content

Commit fcdb237

Browse files
committed
README
1 parent 9987e37 commit fcdb237

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ Started as a OneTab open source clone, but more features are getting added in!
77
A Chrome extension that keeps tabs on your tabs. Whenever you have too many tabs, put all of them on YourTab with a click and access them later!
88

99
# Current Features:
10+
1011
--* Save All Tabs in a click, or choose the ones you want to save!
1112
--* Name your Tab Groups and drag and drop stuff into them next time!
1213
--* Option to use Alt + Q to Save the current Tab
1314

14-
Any issues, feedback and suggestions? Voice it out here or send me a pull request!
15+
Any issues, feedback and suggestions? Voice it out here or send in a pull request!
16+
17+
**P/S:** UI help is greatly appreciated and much needed imo!
1518

1619
## License
1720

manifest.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"name": "YourTab",
44
"version": "0.8.0",
55
"description": "Keeping Tabs on them Tabs",
6-
"icons": {},
76
"browser_action": {
87
"default_popup": "src/popup/popup.html",
9-
"default_title": "YourTab"
8+
"default_title": "YourTab",
9+
"default_icon": "icons/icon48.png"
1010
},
1111
"background": {
1212
"page": "src/background/background.html",
@@ -32,6 +32,11 @@
3232
]
3333
}
3434
],
35+
"icons": {
36+
"16": "icons/icon16.png",
37+
"48": "icons/icon48.png",
38+
"128": "icons/icon128.png"
39+
},
3540
"options_page": "src/options/options.html",
3641
"permissions": [
3742
"tabs",

src/background/background.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>Tabulator</title>
5+
<title>YourTab</title>
66
<link rel="stylesheet" href="../../assets/reset.min.css">
77
<link rel="stylesheet" href="background.css">
88
<script src="../../assets/prefixfree.min.js"></script>

0 commit comments

Comments
 (0)