Merge pull request #4 from AaronDewes/master

A few improvements
master
Ian Parker 4 years ago committed by GitHub
commit 300c482314
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,7 +4,7 @@
"eqeqeq": true,
"esversion": 8,
"globals": {
"browser": false, // global variable in Firefox, Edge
"browser": false,
"self": false,
"chrome": false,
"log": false,

@ -2,7 +2,8 @@
Definitely for advanced users.
This is a fork of the now-discontinued uMatrix. My focus will be on keeping it working on Firefox for now. I'll do my best to keep it working, but sadly no guarantees. Help will always be welcome!
This is a fork of the now-discontinued [uMatrix](https://github.com/gorhill/uMatrix).
My focus will be on keeping it working on Firefox for now. I'll do my best to keep it working, but sadly no guarantees. Help will always be welcome!
***

@ -22,6 +22,7 @@ ul {
<h3>nuTensor <span id="aboutVersion"></span></h3>
<ul>
<li>Copyright (c) Raymond Hill 2013-2020<br>
<li>Copyright (c) Ian Parker 2020<br>
<li>&nbsp;
<li><span id="aboutStorageUsed"></span><br>
<li>&nbsp;
@ -32,9 +33,9 @@ ul {
<li><a href="https://github.com/geekprojects/nuTensor/issues" data-i18n="aboutIssues"></a><br>
<li><span data-i18n="aboutContributors"></span>
<ul>
<li><span data-i18n="aboutCodeContributors"></span> <a href="https://github.com/gorhill/uMatrix/graphs/contributors">uMatrix, <a href="https://github.com/gorhill/httpswitchboard/graphs/contributors">HTTP Switchboard</a>
<li><span data-i18n="aboutIssueContributors"></span> <a href="https://github.com/gorhill/uMatrix/issues?q=is%3Aissue">uMatrix</a>, <a href="https://github.com/gorhill/httpswitchboard/issues?q=is%3Aissue">HTTP Switchboard</a>
<li><span data-i18n="aboutTranslationContributors"></span> <a href="https://github.com/gorhill/uMatrix/wiki/Translation-work-contributors">Crowdin</a>
<li><span data-i18n="aboutCodeContributors"></span> <a href="https://github.com/geekprojects/nuTensor/graphs/contributors">nuTensor, <a href="https://github.com/gorhill/httpswitchboard/graphs/contributors">HTTP Switchboard</a>
<li><span data-i18n="aboutIssueContributors"></span> <a href="https://github.com/geekprojects/nuTensor/issues?q=is%3Aissue">nuTensor</a>, <a href="https://github.com/gorhill/httpswitchboard/issues?q=is%3Aissue">HTTP Switchboard</a>
<li><span data-i18n="aboutTranslationContributors"></span> <a href="https://github.com/geekprojects/nuTensor/wiki/Translation-work-contributors">Crowdin</a>
</ul>
<li><a href="https://github.com/bestiejs/punycode.js" target="_blank">Punycode.js</a> by <a href="https://github.com/mathiasbynens">Mathias Bynens</a>
<li><a href="https://fontawesome.com/" target="_blank">Font Awesome</a> by <a href="https://github.com/davegandy">Dave Gandy</a>

@ -2,6 +2,6 @@
#
# This script assumes a linux environment
echo "*** uMatrix(Chromium): Cleaning."
echo "*** nuTensor(Chromium): Cleaning."
rm -R ./dist/build
echo "*** uMatrix(Chromium): Cleaned."
echo "*** nuTensor(Chromium): Cleaned."

@ -25,7 +25,7 @@ match = re.search('^\d+\.\d+\.\d+(b|rc)', version)
if not match:
# https://bugzilla.mozilla.org/show_bug.cgi?id=1459007
# By design Firefox opens the sidebar with new installation of
# uMatrix when sidebar_action is present in the manifest.
# nuTensor when sidebar_action is present in the manifest.
# Remove sidebarAction support for stable release of uBO.
del webext_manifest['sidebar_action']

Loading…
Cancel
Save