MetaCPAN Helper

MetaCPAN helper extension for Chrome

MetaCPAN Helperとは何ですか?

MetaCPAN Helperはhttps://worrbase.comによって開発されたChromeの拡張機能で、その主な機能は「MetaCPAN helper extension for Chrome」です。

拡張機能のスクリーンショット

screenshot

MetaCPAN Helper拡張機能のCRXファイルをダウンロード

MetaCPAN Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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'"
}