Replies: 5 comments 2 replies
-
Issues from the console:
async function handleButtonClick() {
const doi = retrieveDOIFromMetaTags();
let bibtexEntry;
if (doi) {
try {
bibtexEntry = await fetchBibTeX(doi);
} catch (error) {
console.error(error);
alert("Failed to fetch BibTeX entry.");
return;
}
} else {
const citationInfo = collectCitationInfo();
bibtexEntry = citationInfo ? citationInfo : generateBibtexWebEntries();
}
window.open(
"https://app.citedrive.com/api/" + btoa(bibtexEntry),
"_blank"
);
} |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reporting this bug and showing the output of the error! I will have to take a closer look. In meanwhile, you can use our "online search" tool, directly in CiteDrive: |
Beta Was this translation helpful? Give feedback.
-
Yes, it seems works after update the code. It would be great if you could update the extension. Thanks. |
Beta Was this translation helpful? Give feedback.
-
Good news! The review process on Google's side has been faster than usual. The new changes should be in place if you use Google Chrome from now on. |
Beta Was this translation helpful? Give feedback.
-
Yes, I can confirm it's working on sciencedirect pages now. Thank you very much. |
Beta Was this translation helpful? Give feedback.
-
The citedrive browser plugin seems working for MDPI but not for sciencedirect.
Example:
https://www.sciencedirect.com/science/article/pii/S0034425707003896?via%3Dihub
Beta Was this translation helpful? Give feedback.
All reactions