Go to line

Go to a specified line in plain file in browser

Go to line क्या है?

Go to line pltnkv द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Go to a specified line in plain file in browser"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Go to line एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension allows you to scroll to a specified line in plain text files on browser.
It makes life easier while using rollbar.com for js-errors tracking.

For example, if you are a web-developer and you have a bug-tracking system that collects errors from js-files in this format:

>> Some error in file.js at line 1204, column 25

You can immediately scroll to the error line without using external text-editor e.g. "Sublime Text"

---------------------------------------------------------
Features:
* Works perfectly with rollbar.com
* Auto detect and replace links to plain text files, so that you are automatically taken to the right line
* Scroll the page to a specified line and column and highlight it
* You can use GET-parameters to specify the line and column

---------------------------------------------------------
Please send bug reports and ideas for future versions to: [email protected]

---------------------------------------------------------
You can fork extension on GitHub! https://github.com/pltnkv/Go-to-line                    

एक्सटेंशन की मूल जानकारी

नाम Go to line Go to line
ID pdaociefbdibmlmebaflgmjilnljkcpn
आधिकारिक URL https://chromewebstore.google.com/detail/go-to-line/pdaociefbdibmlmebaflgmjilnljkcpn
विवरण Go to a specified line in plain file in browser
फ़ाइल का आकार 39 KB
स्थापना संख्या 255
वर्तमान संस्करण 1.5
अंतिम अपडेट 2015-12-15
प्रकाशन तिथि 2015-12-14
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर pltnkv
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Go to line",
    "description": "Go to a specified line in plain file in browser",
    "version": "1.5",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "Go to line",
        "default_icon": "icons\/icon_16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "libs\/jquery-2.1.4.min.js",
                "js\/utils.js",
                "js\/linkProcessors.js",
                "js\/inject.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "manifest_version": 2
}