tadpoles-media-downloader icon indicating copy to clipboard operation
tadpoles-media-downloader copied to clipboard

quotes

Open MarredCheese opened this issue 2 years ago • 1 comments

Awesome work you've done here. Just wanted to let you know of a minor but pesky issue:

Copying the code below from this repo directly works fine: javascript:var js = document.createElement('script');js.src = 'https://jwally.github.io/tadpoles-media-downloader/index.js';document.querySelectorAll('head')[0].appendChild(js).

But copying it from https://jwally.github.io/tadpoles-media-downloader/ does not work because the single quotation marks have been converted to fancy-pants directional quotation marks. javascript:var js = document.createElement(‘script’);js.src = ‘https://jwally.github.io/tadpoles-media-downloader/index.js’;document.querySelectorAll(‘head’)[0].appendChild(js)

MarredCheese avatar Sep 07 '21 15:09 MarredCheese