Movie Meter

Movie Meter will show you rating and popularity of a movie (or TV series) on many movie related pages!

Vad är Movie Meter?

Movie Meter är en Chrome-tillägg utvecklad av https://fastaddons.com, och dess huvudfunktion är "Movie Meter will show you rating and popularity of a movie (or TV series) on many movie related pages!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Movie Meter-förlängningens CRX-fil

Ladda ner Movie Meter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Doesn't work on your favorite movie page?
Contact me and I will add it - if possible (page must contain movie name in English or IMDb link).

Features:
- movie rating and popularity from IMDb
- next / previous episode date from TV Maze
- additional movie / TV series information
- notification about new episode - mark TV series as favorite and you will get notification when new episode is available
- auto-hide when video playback detected

Support independent developer!
Juraj Mäsiar - https://Blog.Mozilla.org/Addons/2020/06/15/Friend-Of-Add-ons-Juraj-Masiar/

I'm addon developer since 2016. My goal is to build powerful extensions for your web-browser to make you more productive.
If you think I'm doing a good job, please donate :)
- Ko-Fi.com: https://ko-fi.com/fastaddons
- PayPal.Me: https://paypal.me/fastaddons/
- Liberapay: https://liberapay.com/juraj.masiar/
- Patreon.com: https://www.patreon.com/fastaddons
- BuyMeACoffee.com: https://www.buymeacoffee.com/fastaddons
- Bank transfer using IBAN:: SK6283300000002701131205, BIC/SWIFT: FIOZSKBAXXX

Your donation is my only income!
Thank you for supporting my work!

Recently added features:
https://addons.mozilla.org/addon/movie_meter/versions/

Known issues:
- movie not found / wrong movie found - since there is no "official" integration with target pages, I cannot guarantee 100% correct results (but in majority of cases it works perfectly)

Privacy Policy:
https://github.com/fastaddons/MovieMeter/blob/master/PRIVACY_POLICY.md

Credits:
- TV shows info is provided by TVmaze.com page
- movie info is provided by IMDb.com page

This addon is not endorsed by or affiliated with IMDb.com nor TVmaze.com.                    

Grundläggande Information om Tillägg

Namn Movie Meter Movie Meter
ID gfakmgbbohbahikekdlhjoobnhgmdchn
Officiell webbadress https://chromewebstore.google.com/detail/movie-meter/gfakmgbbohbahikekdlhjoobnhgmdchn
Beskrivning Movie Meter will show you rating and popularity of a movie (or TV series) on many movie related pages!
Filstorlek 749 KB
Antal Installationer 281
Aktuell Version 3.1
Senast Uppdaterad 2022-05-18
Publiceringsdatum 2020-05-04
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare https://fastaddons.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://fastaddons.com/#movie_meter
Hjälpsida URL https://github.com/fastaddons/MovieMeter/issues
URL till Sekretesspolicy Sidan https://github.com/fastaddons/privacy_policy
Stödda Språk id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "3.1",
    "author": "Juraj M\u00e4siar",
    "default_locale": "en",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "service_worker": "background.loader.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "content_scripts\/page_loaded.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "128": "128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "notifications",
        "contextMenus",
        "webRequest",
        "storage",
        "activeTab",
        "alarms",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "utils\/svg\/save.svg",
                "utils\/svg\/undo.svg",
                "utils\/svg\/resize-corner.svg",
                "svg\/keyboard-right-arrow-button.svg",
                "svg\/search(1).svg",
                "svg\/search(2).svg",
                "svg\/star.svg",
                "svg\/star_o.svg",
                "svg\/imdb.svg",
                "svg\/tv_maze.svg",
                "svg\/blind(2).svg",
                "svg\/show.svg",
                "svg\/add(1).svg",
                "svg\/menu(5).svg",
                "svg\/downwards-arrow-key.svg",
                "svg\/cold.svg",
                "svg\/hot.svg",
                "svg\/thermometer.svg",
                "svg\/donation\/0.svg",
                "svg\/donation\/1.svg",
                "svg\/donation\/2.svg",
                "svg\/donation\/3.svg",
                "svg\/donation\/4.svg",
                "svg\/donation\/5.svg",
                "svg\/donation\/6.svg",
                "svg\/donation\/7.svg",
                "svg\/donation\/8.svg",
                "svg\/donation\/9.svg",
                "svg\/donation\/10.svg",
                "svg\/donation\/11.svg",
                "svg\/donation\/12.svg",
                "svg\/donation\/13.svg",
                "svg\/donation\/14.svg",
                "svg\/donation\/15.svg",
                "svg\/donation\/16.svg",
                "svg\/donation\/17.svg",
                "svg\/donation\/18.svg",
                "128.png"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "incognito": "split"
}