Skip to content

Commit c56ee2a

Browse files
committed
fixed proxy store error bug
1 parent a13adca commit c56ee2a

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Download Pixcelmator Pro Tutorials to local disk
22

3+
### Tutorial website: [https://www.pixelmator.com/tutorials/](https://www.pixelmator.com/tutorials/)
4+
35
This project's goal is to download the full official tutorials of Pixelmator Pro to local disk for offline use. The tutorial contains two types of content. One is embeding the youtube player into tutorial page, the left is rich format tutorials including images and videos.
46

57
Runing the Resources.cmd which generated by the Tamparmonkey script you will get the tutorial's full struct without youtube videos and tutorial example resources.

src/pixelmatorTutorialDownloader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name pixelmatorTutorialDownloader
33
// @namespace http://tampermonkey.net/
4-
// @version 0.12
4+
// @version 0.13
55
// @description download pixcelmator pro tutorial resouces and youtube videos to local disk
66
// @author mooring@codernote.club
77
// @match https://www.pixelmator.com/tutorials/*
@@ -115,7 +115,7 @@ function collect(cmd){
115115
let lproxy = localStorage.getItem('pixelmatorTutorialDownloader_proxy');
116116
if(cmd=='cmd'){
117117
proxy = prompt("Input proxy string like http://127.0.0.1:8899, if no proxy keep it empty", lproxy || '');
118-
localStorage.setItem('archiveAssistant_proxy', proxy||'');
118+
localStorage.setItem('pixelmatorTutorialDownloader_proxy', proxy||'');
119119
}
120120
for(let i=0,il=categories.length;i<il;i++){
121121
categories[i].click();

0 commit comments

Comments
 (0)