Google Meet Dice Roller

Dice roller extension for RPG players using Google Meet

Google Meet Dice Roller क्या है?

Google Meet Dice Roller Rafael Vasconcelos द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Dice roller extension for RPG players using Google Meet"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Meet Dice Roller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Dice roller extension for RPG players using Google Meet.

Source code, change log, how to use and issue tracker in the project's Github page:

https://github.com/rafaelvascc/google-meet-dice-roller

IMPORTANT: The "Browsing History Access" permission is no longer necessary!

On the previous version, the "Roll Dice!" button in the user interface used to use the chrome tabs api. By simply requesting access to use this api, the extension was marked as "requiring browser history".

This api isn't necessary anymore, so the extension will no longer require access to browsing history.                    

एक्सटेंशन की मूल जानकारी

नाम Google Meet Dice Roller Google Meet Dice Roller
ID lpmdpndjiddedlpjgomjhpgmkaochlkg
आधिकारिक URL https://chromewebstore.google.com/detail/google-meet-dice-roller/lpmdpndjiddedlpjgomjhpgmkaochlkg
विवरण Dice roller extension for RPG players using Google Meet
फ़ाइल का आकार 1.13 MB
स्थापना संख्या 4,642
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2022-04-04
प्रकाशन तिथि 2020-07-11
रेटिंग 4.18/5 कुल 11 रेटिंग्स
डेवलपर Rafael Vasconcelos
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/rafaelvascc/google-meet-dice-roller
सहायता पृष्ठ URL https://github.com/rafaelvascc/google-meet-dice-roller/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Meet Dice Roller",
    "version": "1.2.1",
    "description": "Dice roller extension for RPG players using Google Meet",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/64.png",
        "32": "icons\/64.png",
        "48": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ui\/*.png",
                "icons\/*.png",
                "assets\/*.png"
            ],
            "matches": [
                "*:\/\/meet.google.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/128.png"
    },
    "host_permissions": [
        "*:\/\/meet.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content-scripts\/index.js",
                "ui\/index.js"
            ]
        }
    ]
}