Better Slides

Automatic window moving with multiple monitors and speakers notes.

Better Slides क्या है?

Better Slides OSERV द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatic window moving with multiple monitors and speakers notes."।

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

screenshot

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

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

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

                        Make the presentation button in Google Slides™ start an multi screen presentation. Use this if you have two screens and want to automatically present on the second screen, while leaving controls at the first one.

Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.
Have you ever wanted do just plug-in your Google Slides™ presentation on your second monitor and that it setup automatically with the speakers notes?

This extension is made for you!

Just click a button and the presentation launches in fullscreen.
If you have two monitors, it moves the presentation to the second one and show you your speakers notes on your primary monitor.

Launch, Plug, and your presentation is ready !

Github : https://github.com/niikoo/better-slides (forked from: https://github.com/stornitz/better-slides)                    

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

नाम Better Slides Better Slides
ID lkgeaelobckcmimpokfihaohbalfddjc
आधिकारिक URL https://chromewebstore.google.com/detail/better-slides/lkgeaelobckcmimpokfihaohbalfddjc
विवरण Automatic window moving with multiple monitors and speakers notes.
फ़ाइल का आकार 25.99 KB
स्थापना संख्या 268
वर्तमान संस्करण 1.0.4
अंतिम अपडेट 2018-04-15
प्रकाशन तिथि 2018-04-15
डेवलपर OSERV
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/niikoo/better-slides#readme
सहायता पृष्ठ URL https://github.com/niikoo/better-slides/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "http:\/\/json.schemastore.org\/chrome-manifest",
    "name": "Better Slides",
    "short_name": "BetterSlides",
    "description": "Automatic window moving with multiple monitors and speakers notes.",
    "version": "1.0.4",
    "permissions": [
        "activeTab",
        "https:\/\/docs.google.com\/presentation\/d\/*",
        "tabs",
        "system.display"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/d\/*\/edit*"
            ],
            "js": [
                "content-edit.js"
            ]
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/d\/*\/present*"
            ],
            "js": [
                "content-present.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "toinject-openSpeakers.js"
    ],
    "manifest_version": 2
}