Skip to content

Instantly share code, notes, and snippets.

@smellman
Created November 8, 2013 05:52
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 smellman/7366799 to your computer and use it in GitHub Desktop.
Save smellman/7366799 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Lalavel - show detail title
// @namespace http://userscript.smellman.org/
// @description Replace laravel's document site's tiltle to detail title
// @include http://four.laravel.com/docs/*
// @version 1
// @grant none
// ==/UserScript==
var main_title = document.querySelector(".content > h1:nth-child(1)");
var str = main_title.innerHTML;
var title = document.querySelector("head > title:nth-child(3)");
title.innerHTML = str;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment