Rottentomatoes information in Trakt.tv

This extension shows Rotten Tomatoes Fresh/Rotten score in trakt.tv

Rottentomatoes information in Trakt.tvคืออะไร?

Rottentomatoes information in Trakt.tv เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zanish และคุณลักษณะหลักของมันคือ "This extension shows Rotten Tomatoes Fresh/Rotten score in trakt.tv"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rottentomatoes information in Trakt.tv

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

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

                        This extension integrates rotten tomatoes ratings into Trakt.tv. You will get up to date scores and ratings from both audiences and critics. Simply click the critic review and you'll be taken to the Rotten tomatoes page to see the full reviews. This is open source program, to see the source code simply head over to the linked github website. Also if you feel generous, head over there and buy me a beer.

Please rate, review, and if you find a bug leave a comment here or at the github page and I'll get right on fixing it.

I do not own nor am affiliated with Rotten Tomatoes, Flixter, or Trakt.tv, I simply wrote the extension. Any images, copyrights, trademarks, and/or patents are owned by them and used here as non-commercial fair-use.

Icon made by Dimi Kazak from FlatIcon is licensed by CC 3.0, to check out more of his work head here http://www.flaticon.com/authors/dimi-kazak.                    

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

ชื่อ Rottentomatoes information in Trakt.tv Rottentomatoes information in Trakt.tv
ID bmnbmfmfbigncpelbpgnplfmmmgmeaeo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/rottentomatoes-informatio/bmnbmfmfbigncpelbpgnplfmmmgmeaeo
คำอธิบาย This extension shows Rotten Tomatoes Fresh/Rotten score in trakt.tv
ขนาดไฟล์ 99.64 KB
จำนวนการติดตั้ง 133
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2018-03-13
วันที่เผยแพร่ 2018-03-13
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Zanish
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://zanish.github.io/Trakt-Community-Ratings/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rottentomatoes information in Trakt.tv",
    "short_name": "Traktatoes",
    "version": "2.0.1",
    "description": "This extension shows Rotten Tomatoes Fresh\/Rotten score in trakt.tv",
    "icons": {
        "128": "icon_128.png"
    },
    "permissions": [
        "https:\/\/www.rottentomatoes.com\/*",
        "http:\/\/www.omdbapi.com\/*",
        "http:\/\/www.omdbapi.com\/?tomatoes=true&i=tt*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trakt.tv\/*",
                "http:\/\/trakt.tv\/*"
            ],
            "css": [
                "rottenTomatoesStyle.css"
            ],
            "js": [
                "script.js",
                "deps\/jquery-3.1.1.min.js",
                "deps\/bootstrap.min.js",
                "deps\/handlebars.min-latest.js",
                "movie_score.template.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}