Go Back There

Go Back There

Go Back Thereคืออะไร?

Go Back There เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kavan Puranik และคุณลักษณะหลักของมันคือ "Go Back There"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Go Back There

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

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

                        Go Back There is a handy extension to go back to an article or web page that you recently visited on a website.

To access the extension, just click on the icon in the toolbar, and the popup will display the recent history for the site you are currently on. 

To open link in a new tab, hold shift and then click.

If you are a power user, then type > + Enter in the omni-box, and search away.

The extension currently is limited to searching history upto 4 weeks back in order to keep it speedy. 

There is an additional feature in the Option menu to configure relative URLs to work with multiple sites. This is something thats probably useful for a developer or a QA who is testing multiple test instances of a website.

Future plans are to increase the history time period by adding a cache. Open to suggestions.

The code is open source, and is available at https://github.com/kavanpuranik/go-back-there                    

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

ชื่อ Go Back There Go Back There
ID djgmbbcbemjkcelcmbgfbaandeknigip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/go-back-there/djgmbbcbemjkcelcmbgfbaandeknigip
คำอธิบาย Go Back There
ขนาดไฟล์ 761 KB
จำนวนการติดตั้ง 98
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2014-01-14
วันที่เผยแพร่ 2014-01-13
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Kavan Puranik
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.penguintastic.com
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Go Back There",
    "version": "1.1.2",
    "manifest_version": 2,
    "description": "Go Back There",
    "homepage_url": "http:\/\/www.penguintastic.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "options_page": "src\/options\/options.html",
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_title": "Go Back There",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "history"
    ],
    "omnibox": {
        "keyword": ">"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+G"
            }
        }
    }
}