Go Back There

Go Back There

Go Back There란 무엇입니까?

Go Back There은(는) Kavan Puranik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Go Back There"입니다.

확장 프로그램 스크린샷

screenshot

Go Back There 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            }
        }
    }
}