Toonbook Additions

beta

Toonbook Additionsคืออะไร?

Toonbook Additions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yoppers529 และคุณลักษณะหลักของมันคือ "beta"

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

screenshot

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

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

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

                        Features:
    -Toggleable night mode in options. Only supports front page currently. 

    -Toggleable border on profile pictures.

    -Fixes broken toolbox images.

    -Edit profile picture from homepage.
    
    -Display usernames by names on posts.

    -Quick-Friend, a way to add lots of people in a matter of seconds.

Version 0.50:
    -Adjusted profile picture popup box, should be more centered and larger.
    -Lowered font size of the "Edit Profile Picture" button.
    -Added Quick-Friend:
        You can use this to send a friend request to lots of people. Simply hit the
        toggle button on the left side of the page and click on the profile pictures
        of people you would like to add. Please note that adding people on the 
        "New Toons" widget will take longer because I have to load the data from each
        profile page. The submit button will temporarily turn red while this data is
        loading. 
        -PLEASE PLEASE tell me if the design of it looks bad, it was quickly thrown
         together and I wasn't sure how else to do the layout.

Version 0.40:
    -Lots O' fixes
    -You can change your profile picture on the homepage now. Do this by clicking
     "Edit Profile Picture" below your name on the left toolbar.

Version 0.31:
    -No more annoying flicker with night mode.

Version 0.3:
    -Added option for a circular border on profile pictures.
    -Several other bug fixes.

Version 0.26:
    -Small night mode fixes

   -New feature:
       -Usernames by name on posts.

Version 0.25:
    -Fixes notifications colors

    -Some colors adjusted

    -Night mode supports groups and profile pages now.                    

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

ชื่อ Toonbook Additions Toonbook Additions
ID ianfmgfkamemhdokkkiccknidpgocjic
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/toonbook-additions/ianfmgfkamemhdokkkiccknidpgocjic
คำอธิบาย beta
ขนาดไฟล์ 57.69 KB
จำนวนการติดตั้ง 16
เวอร์ชันปัจจุบัน 0.50
อัปเดตครั้งล่าสุด 2016-10-15
วันที่เผยแพร่ 2016-10-14
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา yoppers529
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Toonbook Additions",
    "description": "beta",
    "version": "0.50",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Options"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*.toonbook.me\/*"
            ],
            "css": [
                "fixes.css"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content_script.js",
                "jquery.form.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "nightTheme.css",
        "profilePictures.css"
    ],
    "options_page": "popup.html",
    "options_ui": {
        "chrome_style": true,
        "page": "popup.html"
    }
}