Netflix Notes

Lets you add notes to your Netflix queue entries

Netflix Notesคืออะไร?

Netflix Notes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mike Morearty และคุณลักษณะหลักของมันคือ "Lets you add notes to your Netflix queue entries"

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

screenshot

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

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

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

                        This happens to me all the time: I decide to add a movie to my Netflix queue – perhaps because it was recommended by a friend, perhaps because I saw a good review, perhaps for some other reason.

Then, months later, I can’t remember why I put it in my queue! To address this problem, I wrote this little Chrome script called Netflix Notes.

Netflix Notes changes your Netflix queue so that you can add a private “note to self” on each movie in your queue. The main point of this is to remind yourself why you added a particular movie – e.g. because a friend recommended it, you read a good review, and so on.

Conveniently, the notes you enter are synchronized across all your computers, as long as you are logged into Chrome.

FAQ:

Q: Can other people see my notes?
A: Your notes are only visible on any computer on which you "log into" Chrome.  So for example, if you have one computer at home and one at work, and you log into the same Chrome account on both, then you can see the same set of notes on both; and anyone else who sits down at one of those computers can see the notes.

Q: Where, exactly, are the notes stored? 
A: They are stored in what Google calls "Chrome Storage," which is part of your user profile. E.g. on a Mac, the local copy is usually under ~/Library/Application Support/Google/Chrome/Default. Chrome also copies the data up to Google's servers, so that it can be synchronized across all your computers.  See http://developer.chrome.com/extensions/storage.html for technical details.                    

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

ชื่อ Netflix Notes Netflix Notes
ID ghemmgmfnodckgkobifjhnmjmbhnclpa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-notes/ghemmgmfnodckgkobifjhnmjmbhnclpa
คำอธิบาย Lets you add notes to your Netflix queue entries
ขนาดไฟล์ 4.65 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2014-01-05
วันที่เผยแพร่ 2014-01-04
คะแนน 1.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Mike Morearty
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Notes",
    "description": "Lets you add notes to your Netflix queue entries",
    "version": "2.0.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.netflix.com\/Queue*",
                "http:\/\/*.netflix.com\/MyList*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}