Skip to content

Commit 0612caa

Browse files
Release 1.1.1
1 parent af1437d commit 0612caa

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A chrome extension for the github emoji picker with fun :sunglasses:.
1010

1111
:point_right: Chrome Extension
1212

13-
- [Let's get it]() :call_me_hand:
13+
- [Let's get it](https://chrome.google.com/webstore/detail/github-emoji/odophnhbmlnkolipnngbmlejgfhhabjm) :call_me_hand:
1414

1515
:point_right: Manual Installation
1616

chrome/scripts/background.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ chrome.tabs.onUpdated.addListener((tabId, change) => {
22
change.status === 'complete' && chrome.pageAction.show(tabId)
33
})
44

5-
const hidePopup = () => {
5+
const hidePopup = () =>
66
chrome.tabs.query({ active: true, currentWindow: true }, tabs => {
7-
const curTab = tabs[0],
8-
tabId = curTab.id
7+
const curTab = tabs[0]
8+
const tabId = curTab.id
9+
910
console.log(tabId)
1011
})
11-
}

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fishplusorange/github-emoji",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"author": "FishPlusOrange",
55
"license": "MIT",
66
"description": "A chrome extension for the github emoji picker with fun",
@@ -17,6 +17,11 @@
1717
"url": "https://github.com/FishPlusOrange/github-emoji/issues"
1818
},
1919
"homepage": "https://github.com/FishPlusOrange/github-emoji#readme",
20+
"keywords": [
21+
"emoji",
22+
"github",
23+
"chrome extension"
24+
],
2025
"devDependencies": {
2126
"@babel/core": "^7.5.0",
2227
"@babel/preset-env": "^7.5.0",

0 commit comments

Comments
 (0)