Skip!

Skip YouTube.com video scenes with violent, inappropriate or otherwise undesired content.

什麼是Skip!?

Skip!是由fast.forward.ext開發的Chrome擴展程式,該擴展的主要功能是“Skip YouTube.com video scenes with violent, inappropriate or otherwise undesired content.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Skip!擴展crx文件

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

擴展使用說明

                        As a parent myself, I often open youtube to show some videos to my toddler son. Even the best cartoons have moments I wish my son wouldn't see, due to the fact how young he is. Especially if I'm not sitting next to him to explain what's going on in the video and why. And a lot of times I skip violent or sexual or scary content, but it's such an annoying thing when done manually.
Well, fear no more - with this extension no more manual fast forwarding - you set up what you want to skip, save it and automatically reuse it next time! I am the first person to benefit from it, but you could be next. Go ahead. Try it. It's free.

- Add any number of video ranges to skip
- Mark mark start and end as easy as click a button while at desired position
- Select your very own name for the modified video and save it
- Use in-app list to quickly open stored videos with Skip! ranges                    

擴展基本資訊

名稱 Skip! Skip!
ID hjilebpojfojphboegjchjpamkkalamp
官方網址 https://chromewebstore.google.com/detail/skip/hjilebpojfojphboegjchjpamkkalamp
簡介 Skip YouTube.com video scenes with violent, inappropriate or otherwise undesired content.
檔案大小 20.18 KB
安裝次數 24
目前版本 0.0.4
更新時間 2017-05-19
上架時間 2017-05-18
評分 2.67/5 共 3 次評分
開發者 fast.forward.ext
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skip!",
    "short_name": "Skip",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "Skip YouTube.com video scenes with violent, inappropriate or otherwise undesired content.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "images\/icon-24.png",
        "default_title": "Skip!",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png",
        "512": "images\/icon-512.png"
    },
    "web_accessible_resources": [
        "templates\/*"
    ]
}