Hide Slides

Hide Slides lets you turn off slides in a Google Slides presentation with one click. It is brought to you by denissheeran.com

Hide Slides क्या है?

Hide Slides Denis Sheeran द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide Slides lets you turn off slides in a Google Slides presentation with one click. It is brought to you by denissheeran.com"।

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

screenshot
screenshot
screenshot

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

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

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

                        The Hide Slides extension acts like the same feature from Powerpoint. Click on the eye next to a slide and it will not display in presentation mode. Unclick the eye and the slide will become visible again. 

Hide Slides allows you to present a Google Slides presentation without making a new copy just to remove slides you don't want to show, just like the Powerpoint Hide Slides menu option. Simply install Hide Slides Chrome extension and on every presentation the "eye" icon will appear next to each slide. Choose which slides to show and which to hide and your presentation order will be updated!

We do not collect any personal information and do not have any access to your Slides. 

Developed by Denis Sheeran and Nilay Soni                    

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

नाम Hide Slides Hide Slides
ID efjocfieeddgnodkoelolmigkkhngpcd
आधिकारिक URL https://chrome.google.com/webstore/detail/hide-slides/efjocfieeddgnodkoelolmigkkhngpcd
विवरण Hide Slides lets you turn off slides in a Google Slides presentation with one click. It is brought to you by denissheeran.com
फ़ाइल का आकार 187 KB
स्थापना संख्या 433
वर्तमान संस्करण 1.2
अंतिम अपडेट 2019-03-08
प्रकाशन तिथि 2019-03-08
रेटिंग 2.00/5 कुल 1 रेटिंग्स
डेवलपर Denis Sheeran
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://denissheeran.com/hideslides
गोपनीयता नीति पृष्ठ URL https://denissheeran.com/work-with-denis/annotate-meet-privacy-policy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Slides",
    "version": "1.2",
    "description": "Hide Slides lets you turn off slides in a Google Slides presentation with one click. It is brought to you by denissheeran.com",
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "*:\/\/*\/"
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/default_icon_128.png",
            "16": "images\/default_icon_16.png",
            "19": "images\/default_icon_19.png",
            "24": "images\/default_icon_24.png",
            "32": "images\/default_icon_32.png",
            "48": "images\/default_icon_48.png"
        },
        "default_title": "Hide Slides"
    },
    "icons": {
        "128": "images\/default_icon_128.png",
        "16": "images\/default_icon_16.png",
        "32": "images\/default_icon_32.png",
        "48": "images\/default_icon_48.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/d\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "images\/*"
    ]
}