Comparer les révisions

...

3 Révisions

11 fichiers modifiés avec 24 ajouts et 32 suppressions

Voir le fichier

@ -12,7 +12,7 @@ Or, the easier route, use this extension.
# Features
* Searches through six page cache/mirrors:
* [Google Cache](http://www.google.com/) (plus text-only version)
* [Cachew](https://cachedview.nl/)
* [The Internet Archive](http://web.archive.org/)
* [WebCite](http://www.webcitation.org/)
* [archive.is](https://archive.is/)
@ -31,6 +31,9 @@ Hit back and try another one!
# Changelog
* Version 7
* Replaced Google with Cachew (Cache-view)
* Added sexy dark mode on popup
* Version 6.2.1
* Specify openerTabId for opened tabs
* Version 6.2

Voir le fichier

@ -19,14 +19,9 @@
"description": "Resurrect this link"
},
"resurrectGoogle": {
"message": "with Google",
"description": "with Google"
},
"resurrectGoogleText": {
"message": "with Google (text only)",
"description": "with Google (text only)"
"resurrectCachew": {
"message": "with Cachew",
"description": "with Cache-view"
},
"resurrectArchive": {

Voir le fichier

@ -20,8 +20,8 @@
},
"resurrectGoogle": {
"message": "avec Google",
"description": "with Google"
"message": "avec Cachew",
"description": "with Cache-view"
},
"resurrectGoogleText": {

Voir le fichier

@ -11,8 +11,7 @@ chrome.storage.local.get('openIn', item => {
}, logLastError);
for (let [name, id, icon] of [
['Google', 'google', 'google'],
['GoogleText', 'googletext', 'google'],
['Cachew', 'cachew', 'cachew'],
['Archive', 'archive', 'waybackmachine'],
['ArchiveList', 'archivelist', 'waybackmachine'],
['ArchiveIs', 'archiveis', 'archiveis'],
@ -62,10 +61,8 @@ chrome.contextMenus.onClicked.addListener(function(info, tab) {
} else if (id.endsWith('-link')) {
url = info.linkUrl;
}
if (id.startsWith('resurrect-google-')) {
goToUrl(genGoogleUrl(url), openIn, tab.id);
} else if (id.startsWith('resurrect-googletext-')) {
goToUrl(genGoogleTextUrl(url), openIn, tab.id);
if (id.startsWith('resurrect-cachew-')) {
goToUrl(genCachewUrl(url), openIn, tab.id);
} else if (id.startsWith('resurrect-archive-')) {
goToUrl(genIaUrl(url), openIn, tab.id);
} else if (id.startsWith('resurrect-archivelist-')) {

Voir le fichier

@ -5,25 +5,19 @@ openInEnum = {
NEW_WINDOW : 3
}
let openIn = openInEnum.CURRENT_TAB;
chrome.storage.local.get('openIn', item => {
if (item.openIn) {
openIn = item.openIn;
}
});
function logLastError() {
if (chrome.runtime.lastError) {
console.error('Resurrect error:', chrome.runtime.lastError);
}
}
function genGoogleUrl(url) {
return 'https://www.google.com/search?q=cache:' + encodeURIComponent(url);
}
function genGoogleTextUrl(url) {
return 'https://www.google.com/search?strip=1&q=cache:' + encodeURIComponent(url);
function genCachewUrl(url) {
return 'https://cachedview.nl/#' +url;
}
function genIaUrl(url) {

BIN
icons/cacheicons/cachew.png Fichier normal

Fichier binaire non affiché.

Après

Largeur:  |  Hauteur:  |  Taille: 9.4 KiB

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 4.5 KiB

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 7.9 KiB

Après

Largeur:  |  Hauteur:  |  Taille: 6.8 KiB

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 2.6 KiB

Après

Largeur:  |  Hauteur:  |  Taille: 6.6 KiB

Voir le fichier

@ -3,11 +3,11 @@
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "6.2.1",
"version": "7.0.1",
"default_locale": "en",
"homepage_url": "https://github.com/Albirew/resurrect-pages",
"applications": {
"browser_specific_settings": {
"gecko": {
"id": "resurrect-pages@albirew.fr",
"strict_min_version": "57.0"

Voir le fichier

@ -20,13 +20,16 @@ img {
vertical-align: bottom;
height: 16px;
}
@media (prefers-color-scheme: dark){
body {
filter: hue-rotate(180deg) invert(1);
background-color:#102;
}
}
</style>
<form>
<button data-locale="resurrectGoogle" data-gen="genGoogleUrl">
<img src="icons/cacheicons/google.png">
</button>
<button data-locale="resurrectGoogleText" data-gen="genGoogleTextUrl">
<img src="icons/cacheicons/google.png">
<button data-locale="resurrectCachew" data-gen="genCachewUrl">
<img src="icons/cacheicons/cachew.png">
</button>
<button data-locale="resurrectArchive" data-gen="genIaUrl">
<img src="icons/cacheicons/waybackmachine.png">