URL Switcher
Navigate URL Hierarchy
什么是URL Switcher?
URL Switcher是由curvedmark开发的Chrome扩展程序,该扩展的主要功能是“Navigate URL Hierarchy”。
扩展截图
下载URL Switcher扩展crx文件
下载URL Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Navigate through website URL Hierarchy. Inspired by Safari.
Source code hosted on GitHub: https://github.com/curvedmark/url-switcher 扩展基本信息
| 名称 | |
| ID | jhokdbpcimdpkmgbdnmgcbklohaeleel |
| 官方URL | https://chromewebstore.google.com/detail/url-switcher/jhokdbpcimdpkmgbdnmgcbklohaeleel |
| 简介 | Navigate URL Hierarchy |
| 文件大小 | 7.12 KB |
| 安装次数 | 36 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2013-11-08 |
| 上架时间 | 2013-11-08 |
| 开发者 | curvedmark |
| 付费类型 | free |
| 扩展官网 | https://github.com/curvedmark |
| 帮助页面URL | https://github.com/curvedmark/url-switcher/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "URL Switcher",
"version": "0.1.0",
"description": "Navigate URL Hierarchy",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
}
},
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js",
"url.js"
],
"persistent": false
}
} | |