Nightcorer

Nightcores YouTube videos on the fly.

Nightcorerคืออะไร?

Nightcorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 3oz Pound Cake และคุณลักษณะหลักของมันคือ "Nightcores YouTube videos on the fly."

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

screenshot

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

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

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

                        Refresh the tab to get it to work sometimes!

Raises the pitch and tempo of YouTube videos by an adjustable amount so that it becomes nightcore (unless it was already nightcored in which case it doesn't really 'become'). And I mean the looser definition of nightcore: it works on all YouTube videos, not just hands up/hardcore/trance/etc. genres. Keeping up with the theme, an anime shader is applied to all videos while the extension is active (not really).

You can only speed it up 1.00 to 1.50 times with the slider since most nightcore is about 1.17 to 1.27 times the pitch and tempo of the original. You can also enter a value between 0.50 and 2.00 by clicking on the speed indicator if you'd like to go beyond the normal bounds. 

Note: Sometimes the pitch doesn't work. This is usually on the VEVO videos. If you refresh the page after a bit it should work for the video (the audio is probably cached at that point). Also, if it ever sounds wobbly, turn the extension off and then back on.

The read and write permission only reads and writes to chrome's local storage. This is so that the speed and onness (it's not a word — look it up) is saved.

Uses: https://github.com/cwilso/Audio-Input-Effects/blob/master/js/jungle.js

All feedback is welcome.

Change-log:

1.0.1: Changed UI style.
1.1.0: Made number editable.
1.1.1: Pitch decided to stop working so I fixed that.
1.1.2: Refreshes better between ads and videos, tempo persists.                    

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

ชื่อ Nightcorer Nightcorer
ID pghhaihcmffdmndjcagdgogjockdnaao
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nightcorer/pghhaihcmffdmndjcagdgogjockdnaao
คำอธิบาย Nightcores YouTube videos on the fly.
ขนาดไฟล์ 12.29 KB
จำนวนการติดตั้ง 1,286
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2017-02-11
วันที่เผยแพร่ 2017-02-10
คะแนน 3.90/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา 3oz Pound Cake
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Nightcorer",
    "version": "1.1.2",
    "description": "Nightcores YouTube videos on the fly.",
    "browser_action": {
        "default_icon": "resources\/nightcorer16.png",
        "default_popup": "scripts\/popup.html"
    },
    "icons": {
        "16": "resources\/nightcorer16.png",
        "48": "resources\/nightcorer48.png",
        "128": "resources\/nightcorer128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "scripts\/audio-input-effects.js",
                "scripts\/main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ]
}