Conflicts: CHANGELOG.md Gruntfile.js LICENSE lib/$.coffee package.json src/banner.js src/config.coffee src/css/style.css src/features.coffee src/metadata.js
20 lines
751 B
JavaScript
20 lines
751 B
JavaScript
// ==UserScript==
|
|
// @name <%= meta.name %>
|
|
// @version <%= version %>
|
|
// @namespace <%= name %>
|
|
// @description <%= description %>
|
|
// @license MIT; <%= meta.repo %>blob/<%= meta.mainBranch %>/LICENSE
|
|
<%=
|
|
meta.matches.map(function(match) {
|
|
return '// @match ' + match;
|
|
}).join('\n')
|
|
%>
|
|
// @grant GM_getValue
|
|
// @grant GM_setValue
|
|
// @grant GM_deleteValue
|
|
// @grant GM_openInTab
|
|
// @run-at document-start
|
|
// @updateURL <%= meta.repo %>raw/stable/builds/<%= meta.files.metajs %>
|
|
// @downloadURL <%= meta.repo %>raw/stable/builds/<%= meta.files.userjs %>
|
|
// @icon data:image/png;base64,<%= grunt.file.read('src/img/icon48.png', {encoding: 'base64'}) %>
|
|
// ==/UserScript==
|