Skip to content

Commit 55e8050

Browse files
committed
adds old phrases and emojis; new build
1 parent 923513a commit 55e8050

File tree

4 files changed

+4862
-9
lines changed

4 files changed

+4862
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ a little chrome extension that pesters you when you open too many tabs
88

99
## how to develop tabular
1010

11-
`npm install`
11+
`npm install` (or yarn install)
1212
`gulp build`
1313
`gulp watch`
1414

app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "__MSG_appName__",
33
"author": "Chase Southard",
44
"homepage_url": "https://github.com/chaserx/tabular",
5-
"version": "0.1.1",
5+
"version": "0.2.2",
66
"manifest_version": 2,
77
"description": "__MSG_appDescription__",
88
"icons": {

app/scripts.babel/background.js

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,21 @@ chrome.runtime.onInstalled.addListener(details => {
44
console.log('previousVersion', details.previousVersion)
55
})
66

7-
const messages = ['Everything is going great!',
8-
'Don\'t worry about it',
9-
'Tabs are a great feature of modern browsers',
10-
'More tabs are always better',
11-
'Let\'s open another tab with pictures of puppies',
12-
'You are doing great',
13-
'More tabs, awesome!']
7+
const messages = ['Everything is going great! \uD83D\uDE09',
8+
'Don\'t worry about it \uD83D\uDE09',
9+
'Tabs are a great feature of modern browsers \uD83D\uDE09',
10+
'More tabs are always better \uD83D\uDE09',
11+
'Let\'s open another tab with pictures of puppies \uD83D\uDE09',
12+
'You are doing great \uD83D\uDE09',
13+
'More tabs, awesome! \uD83D\uDE09',
14+
'Yo! Watch it on the tabs will ya?! \uD83D\uDE10',
15+
'Easy on the tabs, man. \uD83D\uDE10',
16+
'Sometimes you get the tab, sometimes the tab gets you. \uD83D\uDE10',
17+
'Oh so many tabs. So many. \uD83D\uDE10',
18+
'Stop. Stop this tabuse. \uD83D\uDE10',
19+
'Seriously?! Another tab? \uD83D\uDE10',
20+
'So this is your plan? Another tab. Great. \uD83D\uDE10',
21+
'Too much tabs! \uD83D\uDE10']
1422

1523
const getMessage = () => {
1624
return messages[Math.floor(Math.random() * messages.length)]

0 commit comments

Comments
 (0)