Chatroulette Custom Selfie

Set any image as your selfie on Chatroulette!

¿Qué es Chatroulette Custom Selfie?

Chatroulette Custom Selfie es una extensión de Chrome desarrollada por kronsuki, y su función principal es "Set any image as your selfie on Chatroulette!".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Chatroulette Custom Selfie

Descarga archivos de extensión Chatroulette Custom Selfie en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Tired of looking like an exhausted goblin before taking a selfie on Chatroulette?

This extension allows you to use ANY image as your selfie. You can even use a moving gif!

So go out, take a nice picture or video on your phone and upload it to Chatroulette!

----------------------------->

+ Usage:

> You will need to set a selfie before using this. Doesn't matter if it's bad. The extension just replaces that selfie. 

> The extension also flips your thumbnail and resizes it. This is how others will actually see you. As a 1x1 non-inverted picture.

> If you're using a gif, make sure its very less in size. Preferably less than 5 MB. Reduce it's frames and compress it before uploading it. Everyone else can see your selfie move after that. Make sure your face is visible!

----------------------------->

+ Github: 

The code's open source! Check it out on my github!
https://github.com/SuppliedOrange/Chatroulette-Custom-Selfie/

----------------------------->

+ Note:

I do not suggest using NSFW images, impersonating people, hiding your face etc. I am not responsible if you get banned on Chatroulette for it. Please read Chatroulette's rules before using this.                    

Información Básica de la Extensión

Nombre Chatroulette Custom Selfie Chatroulette Custom Selfie
ID diioniigmlfehfeoojmgonobbmkndffe
URL Oficial https://chromewebstore.google.com/detail/chatroulette-custom-selfi/diioniigmlfehfeoojmgonobbmkndffe
Descripción Set any image as your selfie on Chatroulette!
Tamaño del Archivo 170 KB
Cantidad de Instalaciones 54
Versión Actual 1.1.2
Última Actualización 2023-12-16
Fecha de Publicación 2023-05-22
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador kronsuki
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/SuppliedOrange/Chatroulette-Custom-Selfie
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chatroulette Custom Selfie",
    "version": "1.1.2",
    "description": "Set any image as your selfie on Chatroulette!",
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chatroulette.com\/app\/"
            ],
            "js": [
                ".\/js\/fixcanvas.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/chatroulette.com\/*"
    ],
    "icons": {
        "128": ".\/assets\/images\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}