Collections for Youtube™

Keep your collections organized.

Collections for Youtube™คืออะไร?

Collections for Youtube™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aleodor Tabarcea และคุณลักษณะหลักของมันคือ "Keep your collections organized."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Collections for Youtube™

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

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

                        Thank you for using Youtuber Collection

Long has it been since YouTube allowed us to group out subscriptions, but worry not, The Extension Guy is here to help you
This handy little extension will make grouping your subscriptions in collections a breeze and what's more, you can take with you anywhere.
Simply login to any Chrome Browser with your Google account, install this extension and your collections are there with you!

Neat, right?

Here are a few of the functionalities:

   - Simply fill in a name in the "New collection" input to create a new collection
   - Add subscriptions to your collection by simply dragging them over the collection name or using the send to option on each subscription
   - Remove a collection by dragging it over the 'New collection' input that will become the trash bin
   - Remove a subscription from a collection by simply dragging it outside the scope of the collection

Note: This is an early version of the extension working only for the "Classic Theme" of YouTube, this will not work for the moment if you use the new interface. No collections will be lost in the upgrading process but bugs and visuals will be improved, so please keep up to date.

For suggestions, bugs or anything else please do not hesitate to contact me at [email protected].

Thanks for being awesome!                    

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

ชื่อ Collections for Youtube™ Collections for Youtube™
ID honnkfdoebhajgiblfcegjnlfkoallck
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/collections-for-youtube/honnkfdoebhajgiblfcegjnlfkoallck
คำอธิบาย Keep your collections organized.
ขนาดไฟล์ 26.89 KB
จำนวนการติดตั้ง 817
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2017-06-27
วันที่เผยแพร่ 2017-06-27
คะแนน 3.22/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา Aleodor Tabarcea
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Aleodor-Tabarcea/youtuber-collections
URL หน้าช่วยเหลือ https://github.com/Aleodor-Tabarcea/youtuber-collections
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Collections for Youtube\u2122",
    "short_name": "Youtuber's Collections",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Keep your collections organized.",
    "permissions": [
        "tabs",
        "webRequest",
        "storage",
        "*:\/\/*.youtube.com\/*"
    ],
    "browser_action": {
        "default_icon": "images\/youtube-logo-128.png",
        "default_popup": "youtuber_collection.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "css\/youtuber_collection.css",
        "js\/webpage\/youtuber_logger.js",
        "js\/webpage\/youtuber_inpage.js",
        "js\/webpage\/youtuber_dom.js",
        "images\/message.png",
        "images\/message_white.png"
    ],
    "incognito": "split",
    "icons": {
        "16": "images\/youtube-logo-16.png",
        "48": "images\/youtube-logo-48.png",
        "128": "images\/youtube-logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/youtuber_logger.js",
                "js\/youtuber_sanitizer.js",
                "js\/youtuber_main.js",
                "js\/youtuber_storage.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    }
}