Speed Nav

Save and use bookmarks for the domain you are on

Speed Navคืออะไร?

Speed Nav เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tim Carter และคุณลักษณะหลักของมันคือ "Save and use bookmarks for the domain you are on"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Speed Nav

ดาวน์โหลดไฟล์ส่วนขยาย Speed Nav ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        !update December 2016
You can now import and export your data as JSON. New interface created for creating your SpeedNav Urls

SpeedNav is a plugin created for testers who navigate within the same domain alot. If makes a context menu (right click menu) in chrome that shows you links that you save for the domain that you are on. 

Ex. 
Lets say that you are testing an eCommerce website and you constantly look at different scenarios of listing pages and detail pages etc. Instead of navigating or looking through all your bookmarks you will have all the shortcuts literally at your fingertips drastically reducing valuable time looking for 'that link I saved somewhere'

You can even ',' comma separate you domains so the url will show up on multiple websites. You can configure your shortcut to be a global link as well so it shows up on all websites. You can even setup a link to opn in a new tab.

Note! Because of security reasons from google the plugin will not work on google webstore.

Enjoy!!!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Speed Nav Speed Nav
ID okglailgbejegogpokmcjpmnnikdjigh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/speed-nav/okglailgbejegogpokmcjpmnnikdjigh
คำอธิบาย Save and use bookmarks for the domain you are on
ขนาดไฟล์ 254 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2017-07-13
วันที่เผยแพร่ 2017-07-13
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Tim Carter
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speed Nav",
    "description": "Save and use bookmarks for the domain you are on",
    "version": "1.3",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "16": "speedNavIcon_16.png",
        "48": "speedNavIcon_48.png",
        "128": "speedNavIcon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "speedNavIcon_16.png",
            "48": "speedNavIcon_48.png",
            "128": "speedNavIcon_128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "speedNavIcon_48.png",
        "fire_button.png"
    ],
    "permissions": [
        "contextMenus",
        "tabs",
        "activeTab",
        "storage"
    ]
}