Chatroulette Custom Selfie

Set any image as your selfie on Chatroulette!

Chatroulette Custom Selfieとは何ですか?

Chatroulette Custom Selfieはkronsukiによって開発されたChromeの拡張機能で、その主な機能は「Set any image as your selfie on Chatroulette!」です。

拡張機能のスクリーンショット

screenshot
screenshot

Chatroulette Custom Selfie拡張機能のCRXファイルをダウンロード

Chatroulette Custom Selfie拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Chatroulette Custom Selfie Chatroulette Custom Selfie
ID diioniigmlfehfeoojmgonobbmkndffe
公式URL https://chromewebstore.google.com/detail/chatroulette-custom-selfi/diioniigmlfehfeoojmgonobbmkndffe
説明 Set any image as your selfie on Chatroulette!
ファイルサイズ 170 KB
インストール数 54
現在のバージョン 1.1.2
最終更新日 2023-12-16
公開日 2023-05-22
評価 5.00/5 合計 1 レビュー
開発者 kronsuki
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/SuppliedOrange/Chatroulette-Custom-Selfie
対応言語 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"
    }
}