Update account

This commit is contained in:
magnolia1234 2020-04-22 22:20:55 +02:00
parent dfc8122e1d
commit 8716203040
3 changed files with 8 additions and 8 deletions

View file

@ -12,8 +12,8 @@
* [License](#license) * [License](#license)
### Installation ### Installation
[Download and install the latest version](https://github.com/magnolia1234/bypass-paywalls-firefox-clean/releases/download/v1.7.0.2/bypass_paywalls_clean-1.7.0.2-an+fx.xpi)\ [Download and install the latest version](https://github.com/magnolia1234-new/bypass-paywalls-firefox-clean/releases/download/v1.7.0.2/bypass_paywalls_clean-1.7.0.2-an+fx.xpi)\
Or first visit the [releases page](https://github.com/magnolia1234/bypass-paywalls-firefox-clean/releases).\ Or first visit the [releases page](https://github.com/magnolia1234-new/bypass-paywalls-firefox-clean/releases).\
Here you can also find a limited permissions version (custom sites not working though).\ Here you can also find a limited permissions version (custom sites not working though).\
Install add-on by downloading xpi-file (assets). Install add-on by downloading xpi-file (assets).
@ -259,7 +259,7 @@ When coming across a paywall click the cookie icon to remove the cookies then re
_*May not always succeed_ _*May not always succeed_
### New site requests ### New site requests
You can submit a request for a new website [here](https://github.com/magnolia1234/bypass-paywalls-firefox-clean/issues/new). Please read the following instructions and share your results for a quicker process. Remember to check the [previous requests](https://github.com/magnolia1234/bypass-paywalls-firefox-clean/issues?q=is%3Aissue+label%3Aenhancement) before asking for a new website. You can submit a request for a new website [here](https://github.com/magnolia1234-new/bypass-paywalls-firefox-clean/issues/new). Please read the following instructions and share your results for a quicker process. Remember to check the [previous requests](https://github.com/magnolia1234-new/bypass-paywalls-firefox-clean/issues?q=is%3Aissue+label%3Aenhancement) before asking for a new website.
1. Visit an article on the site you want to bypass the paywall for and copy the article title. 1. Visit an article on the site you want to bypass the paywall for and copy the article title.
2. Open up a new incognito window (Ctrl+Shift+N) and paste the article title into Google. 2. Open up a new incognito window (Ctrl+Shift+N) and paste the article title into Google.
3. Click on the same article from the Google search results page. Or you can: 3. Click on the same article from the Google search results page. Or you can:
@ -279,7 +279,7 @@ Also you can enable Googlebot user-agent or disable Javascript for (sub)domain(s
* Make sure the (new) site is checked under Options. * Make sure the (new) site is checked under Options.
### Changelog-releases ### Changelog-releases
* Visit the [releases page](https://github.com/magnolia1234/bypass-paywalls-firefox-clean/releases). * Visit the [releases page](https://github.com/magnolia1234-new/bypass-paywalls-firefox-clean/releases).
### Pull Requests ### Pull Requests
* PRs are welcome. * PRs are welcome.
@ -288,4 +288,4 @@ Also you can enable Googlebot user-agent or disable Javascript for (sub)domain(s
* I am not asking for donations or anything like that, all I ask is that you star this repo. * I am not asking for donations or anything like that, all I ask is that you star this repo.
### License ### License
Bypass Paywalls Clean is [MIT-licensed](https://github.com/magnolia1234/bypass-paywalls-firefox-clean/blob/master/LICENSE). Bypass Paywalls Clean is [MIT-licensed](https://github.com/magnolia1234-new/bypass-paywalls-firefox-clean/blob/master/LICENSE).

View file

@ -6,7 +6,7 @@
<body> <body>
<div style="width:225px"><strong>Bypass Paywalls Clean <span id="version"></span></strong> <div style="width:225px"><strong>Bypass Paywalls Clean <span id="version"></span></strong>
<br><a href="options.html" style="color:black">Options</a> | <br><a href="options.html" style="color:black">Options</a> |
<a href="https://github.com/magnolia1234/bypass-paywalls-firefox-clean/blob/master/README.md" style="color:black" target=”_blank”>GitHub</a> <a href="https://github.com/magnolia1234-new/bypass-paywalls-firefox-clean/blob/master/README.md" style="color:black" target=”_blank”>GitHub</a>
<span id="version_new"></span></div> <span id="version_new"></span></div>
<script src="version.js"></script> <script src="version.js"></script>
</body> </body>

View file

@ -4,7 +4,7 @@ var manifestData = ext_api.runtime.getManifest();
var versionString = 'v' + manifestData.version; var versionString = 'v' + manifestData.version;
document.getElementById('version').innerText = versionString; document.getElementById('version').innerText = versionString;
const manifest_new = 'https://raw.githubusercontent.com/magnolia1234/bypass-paywalls-firefox-clean/master/manifest.json'; const manifest_new = 'https://raw.githubusercontent.com/magnolia1234-new/bypass-paywalls-firefox-clean/master/manifest.json';
fetch(manifest_new) fetch(manifest_new)
.then(response => { .then(response => {
if (response.ok) { if (response.ok) {
@ -15,7 +15,7 @@ fetch(manifest_new)
versionString_new.appendChild(document.createTextNode(' | ')); versionString_new.appendChild(document.createTextNode(' | '));
var anchorEl = document.createElement('a'); var anchorEl = document.createElement('a');
anchorEl.text = 'New release v' + version_new; anchorEl.text = 'New release v' + version_new;
anchorEl.href = 'https://github.com/magnolia1234/bypass-paywalls-firefox-clean/releases'; anchorEl.href = 'https://github.com/magnolia1234-new/bypass-paywalls-firefox-clean/releases';
anchorEl.target = '_blank'; anchorEl.target = '_blank';
versionString_new.appendChild(anchorEl); versionString_new.appendChild(anchorEl);
} }