Skip to content

Commit 30fd677

Browse files
committed
prepare for distribution
1 parent f1050e7 commit 30fd677

File tree

5 files changed

+40
-26
lines changed

5 files changed

+40
-26
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
all: $(addprefix .build-tag/,manifest _locales icons)
22

3-
clear:
3+
clean:
44
rm -r dist .build-tag
55

66
dist: | .build-tag

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Link Stack
2+
3+
Link Stack is a Chrome / Firefox browser extension that turns a bookmark folder into a stack of links. Use the key combination to push the active tab onto the stack. Or, click to pop them from the stack and open them in new tabs.
4+
5+
Built with a highly responsive UI, this extension is intended for users who skim hundreds of links per day, e.g. journalists, authors, creatives, researchers, etc.
6+
7+
# Install
8+
9+
[GNU Make](https://www.gnu.org/software/make/) is required to build the project. Clone the Github repository and then simply:
10+
11+
```
12+
> npm install
13+
```

images/icon.svg

Lines changed: 23 additions & 21 deletions
Loading

manifest/manifest.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
"name": "__MSG_extName__",
55
"description": "__MSG_extDesc__",
66
"version": "1.0",
7-
"developer": {
8-
"name": "Guangyang Wen",
9-
"url": "https://github.com/gywn/"
10-
},
7+
"author": "Guangyang Wen",
8+
"homepage_url": "https://github.com/gywn/",
119
"background": {
1210
"scripts": ["background.js"]
1311
},

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"webpack-cli": "^3.1.0"
3535
},
3636
"dependencies": {},
37+
"license" : "MIT",
3738
"importSort": {
3839
".js, .jsx, .ts, .tsx": {
3940
"parser": "typescript",

0 commit comments

Comments
 (0)