12774ecfc3
Context menu revived
90 lignes
3,1 Kio
JavaScript
90 lignes
3,1 Kio
JavaScript
chrome.storage.local.get('openIn', item => {
|
|
if (item.openIn) {
|
|
openIn = item.openIn;
|
|
}
|
|
|
|
['page', 'link'].forEach(context => {
|
|
chrome.contextMenus.create({
|
|
contexts: [context],
|
|
id: 'resurrect-' + context,
|
|
title: chrome.i18n.getMessage('resurrect_' + context),
|
|
}, logLastError);
|
|
|
|
for (let [name, id, icon] of [
|
|
['Google', 'google', 'google'],
|
|
['GoogleText', 'googletext', 'google'],
|
|
['Archive', 'archive', 'waybackmachine'],
|
|
['ArchiveList', 'archivelist', 'waybackmachine'],
|
|
['ArchiveIs', 'archiveis', 'archiveis'],
|
|
['WebCitation', 'webcitation', 'webcitation'],
|
|
['MementoWeb', 'mementoweb', 'mementoweb'],
|
|
['IsUp', 'isup', 'isup'],
|
|
]) {
|
|
chrome.contextMenus.create({
|
|
contexts: [context],
|
|
icons: {16: 'icons/cacheicons/' + icon + '.png'},
|
|
id: 'resurrect-' + id + '-' + context,
|
|
parentId: 'resurrect-' + context,
|
|
title: chrome.i18n.getMessage('resurrect' + name),
|
|
}, logLastError);
|
|
}
|
|
|
|
chrome.contextMenus.create({
|
|
id: 'resurrect-separator-config-' + context,
|
|
type: 'separator',
|
|
contexts: [context],
|
|
parentId: 'resurrect-' + context
|
|
}, logLastError);
|
|
|
|
for (let [name, where, checked] of [
|
|
['CurrentTab', 'current-tab', openIn == openInEnum.CURRENT_TAB],
|
|
['NewTab', 'new-tab', openIn == openInEnum.NEW_TAB],
|
|
['BgTab', 'bg-tab', openIn == openInEnum.NEW_BGTAB],
|
|
['NewWindow', 'new-window', openIn == openInEnum.NEW_WINDOW],
|
|
]) {
|
|
chrome.contextMenus.create({
|
|
id: 'resurrect-' + where + '-' + context,
|
|
type: 'radio',
|
|
title: chrome.i18n.getMessage('resurrectConfig' + name),
|
|
contexts: [context],
|
|
checked: checked,
|
|
parentId: 'resurrect-' + context
|
|
}, logLastError);
|
|
}
|
|
});
|
|
});
|
|
|
|
chrome.contextMenus.onClicked.addListener(function(info, tab) {
|
|
let id = info.menuItemId;
|
|
let url = null;
|
|
if (id.endsWith('-page')) {
|
|
url = info.pageUrl;
|
|
} else if (id.endsWith('-link')) {
|
|
url = info.linkUrl;
|
|
}
|
|
if (id.startsWith('resurrect-google-')) {
|
|
goToUrl(genGoogleUrl(url), openIn);
|
|
} else if (id.startsWith('resurrect-googletext-')) {
|
|
goToUrl(genGoogleTextUrl(url), openIn);
|
|
} else if (id.startsWith('resurrect-archive-')) {
|
|
goToUrl(genIaUrl(url), openIn);
|
|
} else if (id.startsWith('resurrect-archivelist-')) {
|
|
goToUrl(genIaListUrl(url), openIn);
|
|
} else if (id.startsWith('resurrect-archiveis-')) {
|
|
goToUrl(genArchiveIsUrl(url), openIn);
|
|
} else if (id.startsWith('resurrect-isup-')) {
|
|
goToUrl(genIsUpUrl(url), openIn);
|
|
} else if (id.startsWith('resurrect-webcitation-')) {
|
|
goToUrl(genWebCiteUrl(url), openIn);
|
|
} else if (id.startsWith('resurrect-mementoweb-')) {
|
|
goToUrl(genMementoUrl(url), openIn);
|
|
} else if (id.startsWith('resurrect-current-tab-')) {
|
|
setOpenIn(openInEnum.CURRENT_TAB);
|
|
} else if (id.startsWith('resurrect-new-tab-')) {
|
|
setOpenIn(openInEnum.NEW_TAB);
|
|
} else if (id.startsWith('resurrect-bg-tab-')) {
|
|
setOpenIn(openInEnum.NEW_BGTAB);
|
|
} else if (id.startsWith('resurrect-new-window-')) {
|
|
setOpenIn(openInEnum.NEW_WINDOW);
|
|
}
|
|
});
|