├── .gitignore ├── comic-conv-script.js ├── copylink-button.js ├── export-note.js ├── github-button.js ├── imgs ├── Tampermonkey.png ├── vip按钮.png ├── vip解析.png ├── 淘宝销量排序.png └── 脚本源.png ├── jd-assistant.js ├── lib ├── UI.js └── debug.js ├── link-blank.js ├── readme.md ├── screenshot ├── export-note.png ├── github-file-copy.png ├── github-file-download.png ├── github-issues-filter.png ├── github-modal-img.png ├── jd-search.png └── taobao-assistant.png ├── taobao-assistant.js └── 网页脚本的食用方式.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /comic-conv-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/comic-conv-script.js -------------------------------------------------------------------------------- /copylink-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/copylink-button.js -------------------------------------------------------------------------------- /export-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/export-note.js -------------------------------------------------------------------------------- /github-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/github-button.js -------------------------------------------------------------------------------- /imgs/Tampermonkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/imgs/Tampermonkey.png -------------------------------------------------------------------------------- /imgs/vip按钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/imgs/vip按钮.png -------------------------------------------------------------------------------- /imgs/vip解析.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/imgs/vip解析.png -------------------------------------------------------------------------------- /imgs/淘宝销量排序.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/imgs/淘宝销量排序.png -------------------------------------------------------------------------------- /imgs/脚本源.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/imgs/脚本源.png -------------------------------------------------------------------------------- /jd-assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/jd-assistant.js -------------------------------------------------------------------------------- /lib/UI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/lib/UI.js -------------------------------------------------------------------------------- /lib/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/lib/debug.js -------------------------------------------------------------------------------- /link-blank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/link-blank.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot/export-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/screenshot/export-note.png -------------------------------------------------------------------------------- /screenshot/github-file-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/screenshot/github-file-copy.png -------------------------------------------------------------------------------- /screenshot/github-file-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/screenshot/github-file-download.png -------------------------------------------------------------------------------- /screenshot/github-issues-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/screenshot/github-issues-filter.png -------------------------------------------------------------------------------- /screenshot/github-modal-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/screenshot/github-modal-img.png -------------------------------------------------------------------------------- /screenshot/jd-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/screenshot/jd-search.png -------------------------------------------------------------------------------- /screenshot/taobao-assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/screenshot/taobao-assistant.png -------------------------------------------------------------------------------- /taobao-assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/taobao-assistant.js -------------------------------------------------------------------------------- /网页脚本的食用方式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeomanYe/web-scripts/HEAD/网页脚本的食用方式.md --------------------------------------------------------------------------------