MyMeta - Customized Metacritic averages.

Custom Metacritic averages from your favorite publications.

MyMeta - Customized Metacritic averages.란 무엇입니까?

MyMeta - Customized Metacritic averages.은(는) Julian De Ocampo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Custom Metacritic averages from your favorite publications."입니다.

확장 프로그램 스크린샷

screenshot

MyMeta - Customized Metacritic averages. 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        MyMeta
=========

Chrome extension that allows users to see normalized review scores on Metacritic based on a custom list of their favorite publications' reviews.

Instructions
=========

Make a list of your favorite Metacritic publications by clicking the MyMeta icon on the toolbar and clicking the "+" button at the bottom. Make sure that the publications are written exactly as they appear on Metacritic.  Click "Remove" to remove one from your list. Your custom Metacritic score will appear next to the normal Metascore when you view the page of any reviewed item on the site.

Note that your publications list is stored on your Google Chrome account and can be accessed only when you are logged into your Google account in Chrome.

View on Github at: https://github.com/JCDJulian/MyMeta                    

확장 프로그램 기본 정보

이름 MyMeta - Customized Metacritic averages. MyMeta - Customized Metacritic averages.
ID ljfogjokjmjlaaemkgbnhiodpebjcngc
공식 URL https://chromewebstore.google.com/detail/mymeta-customized-metacri/ljfogjokjmjlaaemkgbnhiodpebjcngc
설명 Custom Metacritic averages from your favorite publications.
파일 크기 132 KB
설치 횟수 32
현재 버전 1.0
최근 업데이트 2014-12-21
출시 날짜 2014-12-21
평점 4.00/5 총 1 개의 평점
개발자 Julian De Ocampo
결제 유형 free
도움말 페이지 URL https://github.com/JCDJulian/MyMeta
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MyMeta - Customized Metacritic averages.",
    "description": "Custom Metacritic averages from your favorite publications.",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/byroredux-metacritic.p.mashape.com\/"
    ],
    "browser_action": {
        "default_icon": "16x16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "arbiter.js"
            ],
            "matches": [
                "http:\/\/www.metacritic.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    }
}