Netflix Autoplayer - With System Sleep Timer

Autoplays Netflix TV Shows - Shuts down computer when done

Netflix Autoplayer - With System Sleep Timerคืออะไร?

Netflix Autoplayer - With System Sleep Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.mattevanoff.com และคุณลักษณะหลักของมันคือ "Autoplays Netflix TV Shows - Shuts down computer when done"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Autoplayer - With System Sleep Timer

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

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

                        Netflix Autoplayer With Computer Sleep / Shutdown
0.8 Updates:
Added support for Chromecast!

0.7 Updates:
Fixed a Javascript error that was breaking everything

0.6 Updates: 
*Added episode counter in addition to timer
*Pausing video stops timer
*Fixed bugs when stopping

0.5 Updates: 
*Play/Pause, Next and Stop media buttons on keyboard now work with Netflix. 
*ctrl+q now causes the same action as the sleep timer ending (ex: pause movie & sleep).

This will autoplay Netflix TV shows for the amount of time you tell it.  When the time has finished, it can Shutdown/Sleep your computer.

IMPORTANT:
For the ‘Sleep’ functionality to work, once you have installed the extension, you must download the install.bat file that you will see a link for at the bottom of the dialog for the extension. You must run this (and I believe you might need administrator privileges when you do) it creates a couple files that are needed and adds a registry entry. Really, in general I would say you should not do something like that. You shouldn’t be running random things people on the internet tell you to. If you want the ‘Sleep’ to work though, that’s what you need to do. If you understand how .bat files work, it is actually really small, so you can check out what it is doing.

Once you have done the above you can actually edit one of the files it creates, it is located at:
%LOCALAPPDATA%\Netflix-Autoplay\shutdown.bat

And by default should have the following:

:: Lock
::rundll32.exe User32.dll,LockWorkStation
:: Shutdown
::Shutdown.exe -s -t 00
:: Hibernate
::rundll32.exe PowrProf.dll,SetSuspendState
:: Sleep
rundll32.exe powrprof.dll,SetSuspendState 0,1,0

As you can see, ‘Sleep’ is what it does by default, but I have entries for Hibernate, Shutdown, and Lock all listed, just uncomment the one you want and comment the others back out…Hell if you want you could really put anything you like in that file and make it run anything when the timer gets to zero.

GitHub: https://github.com/rtpmatt/Netflix-Autoplay-Chrome-Extension
My Website: http://www.mattevanoff.com/

If you would like to get rid of some pesky Bitcoins: 1CjVo4JVZSRjj43W8so5qC1KhWmynQpW9N                    

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

ชื่อ Netflix Autoplayer - With System Sleep Timer Netflix Autoplayer - With System Sleep Timer
ID adegickccmlojbmbmemgjakpoammfmkg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-autoplayer-with-s/adegickccmlojbmbmemgjakpoammfmkg
คำอธิบาย Autoplays Netflix TV Shows - Shuts down computer when done
ขนาดไฟล์ 17.49 KB
จำนวนการติดตั้ง 1,766
เวอร์ชันปัจจุบัน 0.8
อัปเดตครั้งล่าสุด 2015-06-12
วันที่เผยแพร่ 2015-06-11
คะแนน 3.68/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา https://www.mattevanoff.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.mattevanoff.com
URL หน้าช่วยเหลือ http://www.mattevanoff.com/2015/03/netflix-autoplay-chrome-extension-with-system-sleep/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Autoplayer - With System Sleep Timer",
    "version": "0.8",
    "manifest_version": 2,
    "description": "Autoplays Netflix TV Shows - Shuts down computer when done",
    "author": "Matt Evanoff - [email protected]",
    "homepage_url": "http:\/\/www.mattevanoff.com",
    "permissions": [
        "tabs",
        "nativeMessaging",
        "background",
        "http:\/\/*.netflix.com\/*",
        "https:\/\/*.netflix.com\/*"
    ],
    "page_action": {
        "default_icon": "icon38.png",
        "default_title": "Netflix Autoplay",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.netflix.com\/*",
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "netflix.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "prefs.html",
        "chrome_style": true
    },
    "commands": {
        "next": {
            "description": "Play Next Track",
            "global": true,
            "suggested_key": {
                "default": "MediaNextTrack",
                "mac": "MediaNextTrack"
            }
        },
        "play-pause": {
            "description": "Play\/Pause Active Audio",
            "global": true,
            "suggested_key": {
                "default": "MediaPlayPause",
                "mac": "MediaPlayPause"
            }
        },
        "prev": {
            "description": "Play Previous Track",
            "global": true,
            "suggested_key": {
                "default": "MediaPrevTrack",
                "mac": "MediaPrevTrack"
            }
        },
        "stop": {
            "description": "Stop Audio",
            "global": true,
            "suggested_key": {
                "default": "MediaStop",
                "mac": "MediaStop"
            }
        }
    }
}