MetaCPAN Helper

MetaCPAN helper extension for Chrome

MetaCPAN Helper란 무엇입니까?

MetaCPAN Helper은(는) https://worrbase.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MetaCPAN helper extension for Chrome"입니다.

확장 프로그램 스크린샷

screenshot

MetaCPAN Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a small extension that allows developers to prefer using metacpan over search.cpan.org when browsing on chrome.

Features:
*Automatically rewrites search.cpan.org links to metacpan equivalents
*Search any highlighted text on metacpan
*If you're on search.cpan.org, right click and go to the metacpan equivalent

Changes:
v1.12: Updated manifest
v1.11: Google analytics!
v1.1: Context menu!                    

확장 프로그램 기본 정보

이름 MetaCPAN Helper MetaCPAN Helper
ID aoioenbjpmccpkincghhjfmeceknpcnb
공식 URL https://chromewebstore.google.com/detail/metacpan-helper/aoioenbjpmccpkincghhjfmeceknpcnb
설명 MetaCPAN helper extension for Chrome
파일 크기 8.82 KB
설치 횟수 27
현재 버전 1.12
최근 업데이트 2013-06-30
출시 날짜 2013-06-29
평점 2.67/5 총 3 개의 평점
개발자 https://worrbase.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/worr/metacpan-ext
도움말 페이지 URL https://github.com/worr/metacpan-ext/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MetaCPAN Helper",
    "version": "1.12",
    "description": "MetaCPAN helper extension for Chrome",
    "manifest_version": 2,
    "permissions": [
        "",
        "contextMenus"
    ],
    "icons": {
        "16": "ico_16.png",
        "48": "ico_48.png",
        "128": "ico_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "prep.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}