Skip to content

Instantly share code, notes, and snippets.

@nikhilatjumpcut
Created August 4, 2019 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikhilatjumpcut/430d7372332ac2fa08c0cc2479b06343 to your computer and use it in GitHub Desktop.
Save nikhilatjumpcut/430d7372332ac2fa08c0cc2479b06343 to your computer and use it in GitHub Desktop.
fixCFHeaders
function fixCFHeaders() {
var $head = document.getElementsByTagName('head')[0];
var $firstMeta = document.getElementsByTagName('meta')[0];
var $node = document.createElement('meta');
$node.setAttribute('property', 'fb:app_id');
$node.setAttribute('content', '1688345434786806');
$head.insertBefore($node, $firstMeta);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment