Bläddra i källkod

Merge branch 'master' of ssh://git.coldiary.eu:10022/coldiary/PasteTab

Benoit Sida 4 år sedan
förälder
incheckning
f13b16ac7a
2 ändrade filer med 25 tillägg och 18 borttagningar
  1. 17
    17
      README.md
  2. 8
    1
      src/background.html

+ 17
- 17
README.md Visa fil

1
-# PasteTab
2
-
3
-## Introduction
4
-
5
-> A minimalist (8K) chrome extension that output the clipboard to a new tab
6
-
7
-## Building
8
-
9
-> To pack the extension :
10
-
11
-```
12
-./pack src/ key.pem
13
-```
14
-
15
-## Installation
16
-
17
-You can install it on chrome/chromium from the `chrome://extensions` panel by specify the src dir or the `.crx` file.
1
+# PasteTab
2
+
3
+## Introduction
4
+
5
+> A minimalist (8K) chrome extension that output the clipboard to a new tab
6
+
7
+## Building
8
+
9
+> You can repack the extension with the community script from https://developer.chrome.com/extensions/crx#scripts:
10
+
11
+```
12
+./pack src/ key.pem
13
+```
14
+
15
+## Installation
16
+
17
+> You can install it on chrome/chromium from the `chrome://extensions` panel by specify the `src` dir or the `PasteTab.crx` file.

+ 8
- 1
src/background.html Visa fil

1
-<html><head><script src="scripts/background.js"></script></head><body><textarea id="sandbox"></textarea></body></html>
1
+<html>
2
+  <head>
3
+    <script src="scripts/background.js"></script>
4
+  </head>
5
+  <body>
6
+    <textarea id="sandbox"></textarea>
7
+  </body>
8
+</html>