MetaCPAN Helper

MetaCPAN helper extension for Chrome

What is MetaCPAN Helper?

MetaCPAN Helper is a Chrome extension developed by https://worrbase.com, and its main feature is "MetaCPAN helper extension for Chrome".

Extension Screenshots

screenshot

Download MetaCPAN Helper Extension CRX File

Download MetaCPAN Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name MetaCPAN Helper MetaCPAN Helper
ID aoioenbjpmccpkincghhjfmeceknpcnb
Official URL https://chromewebstore.google.com/detail/metacpan-helper/aoioenbjpmccpkincghhjfmeceknpcnb
Description MetaCPAN helper extension for Chrome
File Size 8.82 KB
Installation Count 27
Current Version 1.12
Last Updated 2013-06-30
Publish Date 2013-06-29
Rating 2.67/5 Total 3 Ratings
Developer https://worrbase.com
Payment Type free
Extension Website https://github.com/worr/metacpan-ext
Help Page URL https://github.com/worr/metacpan-ext/issues
Supported Languages 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'"
}