MyCrunchyList

Anime & Manga search between Crunchyroll & MyAnimeList websites. bridging between the two major anime and manga websites.

MyCrunchyListคืออะไร?

MyCrunchyList เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://mycrunchylist.com และคุณลักษณะหลักของมันคือ "Anime & Manga search between Crunchyroll & MyAnimeList websites. bridging between the two major anime and manga websites."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Anime & Manga search between Crunchyroll & MyAnimeList websites.
Bridging between two major anime and manga websites so now you can easily search from one on the other, with just a single click! Then simply add to your List or Queue.

Features:
* Open links in a lightbox or a new tab.
* Search using English Titles.
* Enlarge search results images.

About:
The extension developed to make Otaku’s life easier, no more need to copy-paste Anime and Manga titles between sites.
with a single click you can search the title on the other site, then watch/read and add it to your List or Queue!

Specs:
A lightweight extension, developed using plain vanilla JavaScript, no libraries, no API. 
Modify only required pages.
No tracking codes, no phishing, no ads.
Freeware!

Open Source:
The full code is available on Github, for you to learn and contribute.
https://github.com/Gil-Goldshlager/MyCrunchyList

Support:
For questions and bug reports please visit the extension support Google group.                    

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

ชื่อ MyCrunchyList MyCrunchyList
ID cngmklngffoecjkjejmoffilkkaglbam
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/mycrunchylist/cngmklngffoecjkjejmoffilkkaglbam
คำอธิบาย Anime & Manga search between Crunchyroll & MyAnimeList websites. bridging between the two major anime and manga websites.
ขนาดไฟล์ 33.09 KB
จำนวนการติดตั้ง 266
เวอร์ชันปัจจุบัน 0.0.1.1
อัปเดตครั้งล่าสุด 2018-10-28
วันที่เผยแพร่ 2018-10-28
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา http://mycrunchylist.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://mycrunchylist.com
URL หน้าช่วยเหลือ https://groups.google.com/d/forum/mycrunchylist
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MyCrunchyList",
    "version": "0.0.1.1",
    "description": "Anime & Manga search between Crunchyroll & MyAnimeList websites. bridging between the two major anime and manga websites.",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "19": "images\/icons\/icon19.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "author": "Gil Goldshlager",
    "homepage_url": "http:\/\/mycrunchylist.com",
    "incognito": "split",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icons\/icon19.png",
            "38": "images\/icons\/icon38.png"
        },
        "default_title": "My Crunchy List",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*",
                "*:\/\/*.myanimelist.net\/*"
            ],
            "css": [
                "styles\/default.css"
            ],
            "js": [
                "scripts\/default.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*"
            ],
            "css": [
                "styles\/crunchyroll.css"
            ],
            "js": [
                "scripts\/crunchyroll.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.myanimelist.net\/*"
            ],
            "css": [
                "styles\/myanimelist.css"
            ],
            "js": [
                "scripts\/myanimelist.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}