Novel Updates Tracker

A chrome extension for the site https://www.novelupdates.com/

Novel Updates Trackerคืออะไร?

Novel Updates Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย redris96 และคุณลักษณะหลักของมันคือ "A chrome extension for the site https://www.novelupdates.com/"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This is an extension for novel updates website. It enables you to do the following things:
 * Search for novels directly from the extension.
 * Subscribe to novels.
 * Gives updates when new chapters come out for subscribed novels.
 * Open new chapter pages directly from the extension.
 * Manage subscriptions in the options page. 
 * Auto import novels in reading list (Just open reading list page and click on import button which pops up)                    

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

ชื่อ Novel Updates Tracker Novel Updates Tracker
ID igmmmhdfkoijidkeddoeafaldcbnmjnn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/novel-updates-tracker/igmmmhdfkoijidkeddoeafaldcbnmjnn
คำอธิบาย A chrome extension for the site https://www.novelupdates.com/
ขนาดไฟล์ 199 KB
จำนวนการติดตั้ง 78
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2018-12-26
วันที่เผยแพร่ 2018-12-26
คะแนน 3.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา redris96
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Novel Updates Tracker",
    "version": "1.1.0",
    "description": "A chrome extension for the site https:\/\/www.novelupdates.com\/",
    "minimum_chrome_version": "23",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "alarms"
    ],
    "options_page": "settings.html",
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/NU.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.novelupdates.com\/series\/*",
                "https:\/\/*.novelupdates.com\/series\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.novelupdates.com\/reading-list\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "content_reading.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "images\/NU.png"
    },
    "manifest_version": 2
}