Conflicts: CHANGELOG.md LICENSE README.md builds/appchan-x.user.js builds/crx/manifest.json builds/crx/script.js builds/updates.xml latest.js package.json
25 lines
897 B
JavaScript
Executable File
25 lines
897 B
JavaScript
Executable File
// ==UserScript==
|
|
// @name <%= meta.name %>
|
|
// @version <%= version %>
|
|
// @minGMVer <%= meta.min.greasemonkey %>
|
|
// @minFFVer <%= meta.min.firefox %>
|
|
// @namespace <%= meta.namespace %>
|
|
// @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_listValues
|
|
// @grant GM_openInTab
|
|
// @grant GM_xmlhttpRequest
|
|
// @run-at document-start
|
|
// @updateURL <%= meta.downloads %><%= meta.files.metajs %>
|
|
// @downloadURL <%= meta.downloads %><%= meta.files.userjs %>
|
|
// @icon data:image/png;base64,<%= grunt.file.read('src/General/img/icon48.png', {encoding: 'base64'}) %>
|
|
// ==/UserScript==
|