Pluralsight Transcript

Add a transcript popup along with live highlighting and automatic scrolling in time with the video playback.

Pluralsight Transcriptคืออะไร?

Pluralsight Transcript เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Add a transcript popup along with live highlighting and automatic scrolling in time with the video playback."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pluralsight Transcript

ดาวน์โหลดไฟล์ส่วนขยาย Pluralsight Transcript ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This (unofficial) extension is used to allow transcript files to be viewed at the same time as watching a video on Pluralsight. Anytime you are on a video playback page, you can click the orange Page Action to open a new window with the transcript.

New in v 1.1:
Transcript now loads on more pages.  Module #s that are embedded in the middle of a name are now parsed correctly from the query string.  Eg. name=understanding-nosql-m0-what-is from course understanding-nosql.

Key features:
- Transcript automatically highlights and makes text larger on active module/clip
- The transcript view will auto-scroll so that you are always able to see the latest text
- The current segment of the clip that is being narrated will be highlighted in yellow to easily follow along
- Scrolling up or down past the "auto-scroll" area will allow manual scrolling

This extension is not associated with Pluralsight in any way and is made available as-is under the MIT license.

Source can be seen at https://github.com/lukevp/pluralsight-transcript                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Pluralsight Transcript Pluralsight Transcript
ID ciabocebgmaodclhcngdonkbljlfclcc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pluralsight-transcript/ciabocebgmaodclhcngdonkbljlfclcc
คำอธิบาย Add a transcript popup along with live highlighting and automatic scrolling in time with the video playback.
ขนาดไฟล์ 13.46 KB
จำนวนการติดตั้ง 571
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2017-07-28
วันที่เผยแพร่ 2017-07-28
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/lukevp/pluralsight-transcript
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pluralsight Transcript",
    "short_name": "pstranscript",
    "version": "1.1",
    "description": "Add a transcript popup along with live highlighting and automatic scrolling in time with the video playback.",
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "browser-polyfill.min.js",
                "content.js"
            ],
            "matches": [
                "*:\/\/app.pluralsight.com\/player?*"
            ]
        }
    ],
    "page_action": {
        "browser_style": true,
        "default_icon": {
            "19": "button\/pageAction-19.png",
            "38": "button\/pageAction-38.png"
        },
        "default_title": "Show Transcript"
    }
}