Go to line
Go to a specified line in plain file in browser
什麼是Go to line?
Go to line是由pltnkv開發的Chrome擴展程式,該擴展的主要功能是“Go to a specified line in plain file in browser”。
擴展截圖
下載Go to line擴展crx文件
下載Go to line擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | pdaociefbdibmlmebaflgmjilnljkcpn |
| 官方網址 | 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
} | |