Skip to content

Commit 26421fd

Browse files
committed
Merge branch 'firefoxAddon'
2 parents 38be89a + b794c10 commit 26421fd

File tree

13 files changed

+43
-50
lines changed

13 files changed

+43
-50
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
# Hashnode Google Chrome extension 🕸
2-
3-
A Google chrome extension with hot & trending posts on tap. Built with Node.js `v8.9` using React, Parcel, and Sass.
1+
# Hashnode browser extension for Firefox and Google Chrome 🕸
42

3+
Google chrome and Mozilla firefox browser extension with hot & trending posts on tap. Built with Node.js `v8.9` using React, Parcel, and Sass.
54

65
## Setup
76

chrome/images/hn-logo.png

42.9 KB
Loading
File renamed without changes.

firefox/images/hn-logo-48.png

3.73 KB
Loading

firefox/images/hn-logo-96.png

11.6 KB
Loading

firefox/manifest.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "Hashnode — The Dev Community",
3+
"manifest_version": 2,
4+
"version": "0.0.1",
5+
"description": "Hashnode Firefox Extension to read hot discussions and stories. Stay up-to-date with what's happening in the developer's community.",
6+
"permissions": [],
7+
"short_name": "Hashnode",
8+
"browser_action": {
9+
"default_icon": {
10+
"48": "images/hn-logo-48.png",
11+
"96": "images/hn-logo-96.png"
12+
},
13+
"default_title": "Hashnode",
14+
"default_popup": "index.html"
15+
},
16+
"author": "Hashnode",
17+
"homepage_url": "https://hashnode.com",
18+
"icons": {
19+
"48": "images/hn-logo-48.png",
20+
"96": "images/hn-logo-96.png"
21+
},
22+
"commands": {
23+
"_execute_browser_action": {
24+
"suggested_key": {
25+
"default": "MacCtrl+Shift+H",
26+
"linux": "Ctrl+Shift+H"
27+
},
28+
"description": "Send a 'toggle-feature' event"
29+
}
30+
}
31+
}

0 commit comments

Comments
 (0)