Created
June 25, 2019 23:36
-
-
Save olivierlemoal/8eb03ee79330706841e146c6fdc7c6b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Opensubtitles Fake Extension | |
// @version 1 | |
// @match *://www.opensubtitles.org/* | |
// @match *://www.opensubtitles.com/* | |
// @grant none | |
// ==/UserScript== | |
var meta = document.createElement('meta'); | |
meta.name = "accesslevel"; | |
meta.content = "extpremium"; | |
meta.id = "extinstalled" | |
document.getElementsByTagName('head')[0].appendChild(meta); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment