Conflicts: CHANGELOG.md LICENSE builds/4chan-X.meta.js builds/4chan-X.user.js builds/appchan-x.user.js builds/crx/manifest.json builds/crx/script.js latest.js package.json src/Filtering/ThreadHiding.coffee src/General/Config.coffee src/General/Header.coffee src/General/Main.coffee src/General/Settings.coffee src/General/css/font-awesome.css src/General/lib/notice.class src/General/meta/metadata.js src/Images/Gallery.coffee src/Images/ImageExpand.coffee src/Monitoring/Favicon.coffee src/Monitoring/ThreadWatcher.coffee src/Posting/QuickReply.coffee worksforme.png
23 lines
857 B
JavaScript
Executable File
23 lines
857 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_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/General/img/icon48.png', {encoding: 'base64'}) %>
|
|
// ==/UserScript==
|