Go Back There
Go Back There
什麼是Go Back There?
Go Back There是由Kavan Puranik開發的Chrome擴展程式,該擴展的主要功能是“Go Back There”。
擴展截圖
下載Go Back There擴展crx文件
下載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 |
ID | djgmbbcbemjkcelcmbgfbaandeknigip |
官方網址 | 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" } } } } |