Cómo Desinstalar Cinemeta En Stremio: Paso A Paso

How to uninstall Cinemeta on Stremio: step by step


How To Uninstall Cinemeta On Stremio: Step By Step

Cinemeta is the series and film catalog installed by default in Stremio. For many, it is a complement they can easily be replaced with better oneslike The Movie Database, which is more complete and also includes more diverse content in Spanish.

With alternatives of this caliber, it is very easy to see the beginning of Stremio saturated to find interesting content. So If you want to get rid of Cinemeta, we have the right tutorial for you for that.

How to uninstall Cinemeta on Stremio

Normally it is not possible to uninstall some add-ons that Stremio includes in its installation. Cinemeta is one of these. It is protected and therefore When you try to uninstall it, a warning appears preventing you from continuing with the process.

How To Uninstall Cinemeta On Stremio: Step By Step

The way to handle this detail is by disabling passcode protectionoperation that must be performed from the Google Chrome browser console on the Stremio site.

The step by step process is simpler than it seems, so by following the tutorial we will leave you with below you will be able to do it uninstall the Cinemeta plugin to be with others from more complete catalogs. Follow the instructions below:

  • Open Stremio from the browser Google Chrome.
  • Login with your Stremio account.
  • On the home page, right-click and select Inspect.
  • Identify the section Console.
  • A warning about integrating external code will appear.
  • To paste the code that allows you to remove Cinemeta, first write “allow gluing” (without the quotes) and then press Enter.
  • Copy and paste the code which we will leave you below and press Enter again.
  • Once the code “Success: {«result»:{«success»:true}}”, you can go to the Add-ons section and uninstall Cinemeta.
  • If he still doesn’t let you, refresh the page by pressing F5 and try again.

Code to uninstall Cinemeta on Stremio:

(function() {

	const token = JSON.parse(localStorage.getItem("profile")).auth.key;

    const requestData = {
        type: "AddonCollectionGet",
        authKey: token,
        update: true
    };

    fetch(' {
        method: 'POST',
        body: JSON.stringify(requestData)
    })
    .then(response => response.json())
    .then(data => {

    if (data && data.result) {

        let result = JSON.stringify(data.result).substring(1).replace(/"protected":true/g, '"protected":false').replace('"idPrefixes":["tmdb:"]', '"idPrefixes":["tmdb:","tt"]');
            
        const index = result.indexOf("}}],");
            
        if (index !== -1) {
            result = result.substring(0, index + 3) + "}";
        }

		let addons="{"type":"AddonCollectionSet","authKey":"" + token + '",' + result;

		fetch(' {
    		method: 'POST',
			body: addons 
		})
      	.then(response => response.text())
      	.then(data => {
      		console.log('Success:', data);
      	})
      	.catch((error) => {
      		console.error('Error:', error);
      	});

        } else {
            console.error('Error:', error);
        }
    })
    .catch((error) => {
        console.error('Erro:', error);
    });
})();

Stremio is one of the best alternatives for watch free content without many problems. You just need to learn how to install the file Most useful plugins for viewing content in Spanish and with this you can secure your movie nights.



Scroll to Top