IMDb Age

Shows the age of an actor next to each of their films.

IMDb Ageคืออะไร?

IMDb Age เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Papworth และคุณลักษณะหลักของมันคือ "Shows the age of an actor next to each of their films."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        IMDb Age is a Chrome Extension that shows you the age of an actor next to each of their films! 

You can view this age per film on the actors page, and you can also see the age of all actors involved with a certain project on the film page. You can toggle this setting on and off as and when you need.

Disclaimers: 

1) Ages only work if IMDb has the actors age listen on the page.
2) Ages are an estimate based on year of birth and the year the film was released. 
3) Loading ages on a films page will ruin the Recently Viewed section, but we will show you a warning before doing so :)

If you have any questions or comments, let us know!

Release 1.1.5 Notes
Fixed some visual bugs that were making the toggle buttons look squashed, and weren't showing the text on the History Warning popup correctly.

Release 1.1.4 Notes
Fixed a bug where the .size() function was deprecated in jQuery, causing lots of errors.

Release 1.1.3 Notes
IMDb updated their site, so ages on films and tv show pages were broken. Should be all working now!

Release 1.1.1 Notes
Fixed a bug when viewing Full Cast page of a film that shares it's name with another film, causing the extension to set an invalid year as the release date.

Release 1.1.0 Notes
* Added a new feature to let you see the ages of actors on the Full Cast page. It only works for actors and actresses for now, and not the cast and crew. There's a new toggle on the page for Full Cast, as well as on the Extension popup panel. Enjoy!

Release 1.0.4 Notes
* Fixed a bug where the toggle IMDb Age button wasn't appearing on unreleased films with no cast list.

Release 1.0.3 Notes
* Fixed a bug where ages for a single episode of TV were showing incorrectly.
* Fixed a bug where ages for unreleased (and un-dated) films were showing incorrectly. We now show the age the actor currently is for this instance.

Release 1.0.2 Notes
* Fixed a bug where TV show ages were showing incorrectly.                    

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

ชื่อ IMDb Age IMDb Age
ID lcgimdomombbldajhgpfnnjfmjhkoiga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/imdb-age/lcgimdomombbldajhgpfnnjfmjhkoiga
คำอธิบาย Shows the age of an actor next to each of their films.
ขนาดไฟล์ 221 KB
จำนวนการติดตั้ง 243
เวอร์ชันปัจจุบัน 1.1.5
อัปเดตครั้งล่าสุด 2021-02-21
วันที่เผยแพร่ 2020-02-16
คะแนน 4.09/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Alex Papworth
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.alexpapworth.co.uk/extensions/imdb-age/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IMDb Age",
    "description": "Shows the age of an actor next to each of their films.",
    "version": "1.1.5",
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/www.imdb.com\/name\/*",
                "http:\/\/www.imdb.com\/title\/*",
                "https:\/\/www.imdb.com\/name\/*",
                "https:\/\/www.imdb.com\/title\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "imdb-age.js",
        "imdb-age.css",
        "recently-viewed.png"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.imdb.com\/*"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}