Papertrail Clickable Links

This extension creates clickable links for URLs in Papertrail log

What is Papertrail Clickable Links?

Papertrail Clickable Links is a Chrome extension developed by Ondřej Mirtes, and its main feature is "This extension creates clickable links for URLs in Papertrail log".

Extension Screenshots

screenshot

Download Papertrail Clickable Links Extension CRX File

Download Papertrail Clickable Links 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 Google Chrome extension creates clickable links in log messages.

If a log message contains `` (e. g. ``), this URL is turned into a clickable link.                    

Extension Basic Information

Name Papertrail Clickable Links Papertrail Clickable Links
ID dbgmfbodfabdpflmlmipapijbmgcgjfg
Official URL https://chromewebstore.google.com/detail/papertrail-clickable-link/dbgmfbodfabdpflmlmipapijbmgcgjfg
Description This extension creates clickable links for URLs in Papertrail log
File Size 21.23 KB
Installation Count 25
Current Version 1.2
Last Updated 2019-09-18
Publish Date 2019-09-18
Developer Ondřej Mirtes
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Papertrail Clickable Links",
    "description": "This extension creates clickable links for URLs in Papertrail log",
    "version": "1.2",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.papertrailapp.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "clickable.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/papertrailapp.com\/",
        "https:\/\/my.papertrailapp.com\/"
    ]
}