Simpli Youtube

Simplifies the Youtube viewing experience

什麼是Simpli Youtube?

Simpli Youtube是由tldralgos開發的Chrome擴展程式,該擴展的主要功能是“Simplifies the Youtube viewing experience”。

擴展截圖

screenshot
screenshot

下載Simpli Youtube擴展crx文件

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

擴展使用說明

                        Remove YouTube recomendations , comments, and more to simplify your Youtube experience.
With all the control given to the user remove as little or as much as you want.

 This extension enables you to reduce distractions and  take control of your time while browsing YouTube in the following ways:

- Hide comments
- Simplify the navigation drawer
- Hide recommended video types 
- Hide video information on videos
- Along with many more fully customizable features.

The options are also heavily customizable, so you can create exactly the experience you want.
So download and enjoy your simplified version of YouTube.                    

擴展基本資訊

名稱 Simpli Youtube Simpli Youtube
ID obfdcjijgiooldbhohidceamnppmkail
官方網址 https://chromewebstore.google.com/detail/simpli-youtube/obfdcjijgiooldbhohidceamnppmkail
簡介 Simplifies the Youtube viewing experience
檔案大小 16.79 KB
安裝次數 72
目前版本 0.1.0
更新時間 2021-01-07
上架時間 2021-01-07
評分 5.00/5 共 2 次評分
開發者 tldralgos
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simpli Youtube",
    "description": "Simplifies the Youtube viewing experience",
    "version": "0.1.0",
    "permissions": [
        "*:\/\/www.youtube.com\/*",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "mainpop.html",
        "default_title": "Youtube Rabbit Hole",
        "default_icon": {
            "16": "image\/logo_16.png",
            "32": "image\/logo_32.png",
            "48": "image\/logo_48.png",
            "128": "image\/logo_128.png"
        }
    },
    "icons": {
        "16": "image\/logo_16.png",
        "32": "image\/logo_32.png",
        "48": "image\/logo_48.png",
        "128": "image\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}