Ok,
just to try, I added a new var amrc_alias and change the line... seems to work fine... didn't see any strange behavior.
https://github.com/AllMangasReader-dev/ ... try.js#L20new line:
var amrc_alias = "https://community.allmangasreader.com/";
https://github.com/AllMangasReader-dev/ ... ns.js#L366Replace var amrc_root by amrc_alias
openTab(amrc_alias + "comments.php?type=1&from=home&id=" + $(this).closest("td").data("idext"));
And I saw that the alias dns is hardcoded in a lot of place (except the one I reported):
grep community.allmangasreader js/*
lab.js: notif.url = "http://community.allmangasreader.com/comments.php?type=1&id=" + wsData.idext;
mgEntry.js:var amrc_alias = "https://community.allmangasreader.com/";
mgEntry.js: notif.url = "http://community.allmangasreader.com/comments.php?type=1&id=" + wsData.idext;
options.js: chrome.runtime.sendMessage({action: 'opentab', url: 'http://community.allmangasreader.com/'}, function () {});
popup.js: openTab("http://community.allmangasreader.com/");
Maybe we can use the new var for these too? What sort of things broke for you last time?