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開發的Chrome擴展程式,該擴展的主要功能是“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

下載Hide Slides擴展crx文件

下載Hide Slides擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}