I just added Add/Edit/Remove Head HTML Tags,
USAGE:
when you add something, in this case a script, eg.
<script> function alertMe(msg){ window.alert(msg) } </script>
You can include an ID like this,
<script id="myScriptID"> function alertMe(msg){ window.alert(msg) } </script>
This way if you want to Edit
or Delete
the script, you can use its ID, myScriptID
in the action.
Works for any HTML Tag you need,
<script>
<style>
<link>
<meta>
//Just to name a few!!