FLO Player

Alters the Flinders University Online (FLO) video player.

FLO Playerคืออะไร?

FLO Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RoundhouseMouse และคุณลักษณะหลักของมันคือ "Alters the Flinders University Online (FLO) video player."

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

screenshot
screenshot

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

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

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

                        I built this extension in an effort to alleviate a frustration I had, and now its available for everyone!

FLO Player code exchanges the default flash player with an HTML5 video player, preventing disruptions in streaming and allowing for alterations of playback speed. If your internet connection isn't the best, this extension was built for you! This will alleviate the irritating buffering times you experience and stops the player from crashing unexpectedly.

Have a try for yourself and feel free to send me feedback via email or in person, I can be found in the Medical center and along South Ridge on most days.

Enjoy, I hope this makes studying just that little bit easier!

[Known unresolved issues] 
If a video was published on a year different to the year you did/are doing the subject, it generally will not load (ie. did the subject in 2015, lecture video was from 2014).                    

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

ชื่อ FLO Player FLO Player
ID pnkfjmfdjmbiamaeooekochfcdhjjhcg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/flo-player/pnkfjmfdjmbiamaeooekochfcdhjjhcg
คำอธิบาย Alters the Flinders University Online (FLO) video player.
ขนาดไฟล์ 660 KB
จำนวนการติดตั้ง 806
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2017-02-06
วันที่เผยแพร่ 2017-02-06
คะแนน 4.20/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา RoundhouseMouse
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FLO Player",
    "description": "Alters the Flinders University Online (FLO) video player.",
    "version": "0.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html",
        "default_title": "FLO Player"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/flo.flinders.edu.au\/mod\/lecture\/*"
            ],
            "js": [
                "js\/jquery-1.12.0.min.js",
                "js\/view.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "",
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google.com;object-src 'self'",
    "web_accessible_resources": [
        "images\/logo.png",
        "images\/shield.png",
        "css\/view.css"
    ]
}