You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ The installation is slightly complicated (since I don't want to add this to the
16
16
There are two ways of installing the extension.
17
17
18
18
### *IMPORTANT* for Windows users
19
-
If you are using Chrome 35+ on Windows you have to use the [second possibility](#second-possibility)! Using packed extensions, that aren't from the Chrome Web Store, does not work anymore.
19
+
If you are using Chrome on Windows you have to use the [second possibility](#second-possibility)! Using packed extensions, that aren't from the Chrome Web Store, does not work anymore.
20
20
21
21
### First possibility
22
22
23
-
The first way is [by this help page](https://support.google.com/chrome_webstore/answer/2664769?hl=en). **This does not work on Windows with Chrome version 35+.**
23
+
The first way is [by this help page](https://support.google.com/chrome_webstore/answer/2664769?hl=en). **This does not work on Windows.**
24
24
25
25
- In Chrome, click on the settings icon on the right (looks like three vertical lines on top of each other)
26
26
- Select Tools > Extensions
@@ -31,7 +31,7 @@ The first way is [by this help page](https://support.google.com/chrome_webstore/
31
31
32
32
The second way is without drag-and-drop, https://developer.chrome.com/extensions/getstarted#unpacked
33
33
34
-
**This works for Windows with Chrome version 35+!**
34
+
**This works on Windows!**
35
35
36
36
- In Chrome, click on the settings icon on the right (looks like three vertical lines on top of each other)
port.children={};// each connection stores the ids of the tabs it opened as children; key = tab id, value always true
86
93
87
94
/* ZIPPING logic
88
-
* moved to background script to have a dedicated tab/thread for compression so
89
-
* that it doesn't make the reader tab itself slow
90
-
*/
95
+
* moved to background script to have a dedicated tab/thread for compression so
96
+
* that it doesn't make the reader tab itself slow
97
+
*/
91
98
if(port.name=="reader")
92
99
port.receive(function(request,callback){
93
100
if(request.what=="new_zip"){
94
-
getWriter(function(writer,zipFile){
101
+
getWriter(function(writer,zipFile){
95
102
port.zipFile=zipFile;
96
103
zip.createWriter(writer,function(writer){
97
104
port.zip=writer;
98
105
port.user=request.user;
99
-
writer.add(".meta.asc",newzip.TextReader("This is a ComiXology backup.\nPlease do not distribute it.\nBackup created by "+(request.user||"[UNKNOWN USER]")));
100
-
callback({what:"new_zip_created",error:false});
106
+
writer.add(".meta.asc",newzip.TextReader("This is a ComiXology backup.\nPlease do not distribute it.\nBackup created by "+(request.user||"[UNKNOWN USER]")));
0 commit comments