The information I need is in a meta tag. How can I access the “content” data of the meta tag when property=”video”? HTML: Answer You can use this:
Tag: greasemonkey
How to convert a bookmarklet into a Greasemonkey userscript?
Is there a easy way to do this. And is there anything that needs to be changed due to differences in how it is ran? Answer The easiest way to do this: Run the bookmarklet code through a URL decoder. so that javascript:alert%20(‘Hi%20Boss!’)%3B, for example, becomes: javascript:alert (‘Hi Boss!’); Strip the leading javascript: off. Result: alert (‘Hi Boss!’); Add