Witam
Mam problem z firefox taki iż żadne dodatki nie działają lub są blokowane np. Ublock , Gost itd. żaden motyw tylko podstawowe .Wczoraj wszystko działało normalnie , dziś przeinstalowałem firefox na inne wersje starsze i nowsze i nic to samo żaden dodatek nie działa system Win 10 Pro 64 bit obecnie firefox 66.03 . skany na wirusy też nic nie znalazły .
Może macie jakieś pomysły co z tym zrobić ?!?!?!
Z góry dzięki za pomoc !!!
U mnie na pececie jest to samo. Wszystkie dodatki nie działają. Przy próbie zainstalowania zamienników ukazuje się informacja o braku połączenia z internetem.
w d*&^pie mam gdzie zgłosili (od tego są beta testy! by takie problemy wyłapywać)
Niezależnie od tego czy w ciągu godz. czy nie problem załatają moje pytanie brzmi: czy istnieje siłowy sposób wyłączenia sprawdzania tych ich cudacznych certyfikatów?
Firefox nightly, tam możesz zainstalować po przełączeniu pewnego wpisu nawet niepodpisane dodatki np. z relases na github.
What are my options if I want to install unsigned extensions in Firefox?
The Nightly and Developer Edition versions of Firefox have a preference to disable signature enforcement. There are also be special unbranded versions of Release and Beta that have this preference, so that add-on developers can work on their add-ons without having to sign every build. To disable signature checks, you will need to set the xpinstall.signatures.required preference to “false”.
type about:config into the URL bar in Firefox
in the Search box type xpinstall.signatures.required
double-click the preference, or right-click and selected “Toggle”, to set it to false .
Okej, rozumiem na chromium, ale nie na Chrome.
A na android zainstalować Adguard apk. Na PC jest trochę trudniej, bo Adguard Windows jest na razie płatny.
Paste this in the browser console with ctrl+shift+j (if you can’t, set devtools.chrome.enabled to enable in about:config)
This needs to be applied once at least 24 hours until Mozilla fixes this I guess
// Re-enable all extensions
async function set_addons_as_signed() {
Components.utils.import("resource://gre/modules/addons/XPIDatabase.jsm");
Components.utils.import("resource://gre/modules/AddonManager.jsm");
let addons = await XPIDatabase.getAddonList(a => true);
for (let addon of addons) {
// The add-on might have vanished, we'll catch that on the next startup
if (!addon._sourceBundle.exists())
continue;
if( addon.signedState != AddonManager.SIGNEDSTATE_UNKNOWN )
continue;
addon.signedState = AddonManager.SIGNEDSTATE_NOT_REQUIRED;
AddonManagerPrivate.callAddonListeners("onPropertyChanged",
addon.wrapper,
["signedState"]);
await XPIDatabase.updateAddonDisabledState(addon);
}
XPIDatabase.saveChanges();
}
set_addons_as_signed();