123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- const apiUrl = "https://localhost:7258";
- browser.runtime.onMessage.addListener((request, sender, sendResponse) => {
- if (request.message === "get_auth_token") {
- // chrome.identity.getAuthToken({ interactive: true }, function (token) {
- // console.log(token);
- // chrome.identity.getProfileUserInfo(function (userInfo) {
- // console.log(JSON.stringify(userInfo));
- // });
- // });
- } else if (request.message === "log_off") {
- // console.log("logging off");
- // chrome.identity.clearAllCachedAuthTokens(() => console.log("logged off"));
- } else if (request.message == "set_state") {
- console.log(request);
- // chrome.identity.getAuthToken({ interactive: true }, function (token) {
- let token = "";
- fetch(`${apiUrl}/votes?videoId=${request.videoId}`, {
- method: "GET",
- headers: {
- Accept: "application/json",
- Authorization: "Bearer " + token,
- },
- })
- .then((response) => response.json())
- .then((response) => {
- console.log(response);
- sendResponse(response);
- })
- .catch();
- //});
- return true;
- }
- });
- browser.tabs.onUpdated.addListener(async (tabId, changeInfo, tab) => {
- if (changeInfo.status == "complete") {
- if (tab.url && tab.url.indexOf("youtube.") < 0) return;
- browser.tabs.get(tabId, (tab) => {
- browser.tabs.executeScript(tab.id,{
- file: "script.js",
- });
- });
- }
- });
|