Go to line

Go to a specified line in plain file in browser

ما هو Go to line؟

Go to line هو إضافة Chrome تم تطويرها بواسطة pltnkv، والميزة الرئيسية لها هي "Go to a specified line in plain file in browser".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Go to line

قم بتنزيل ملفات الامتداد Go to line بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
}