Short Cut for URL mapper
This extension will translate the URL in address bar
什么是Short Cut for URL mapper?
Short Cut for URL mapper是由lwpro2开发的Chrome扩展程序,该扩展的主要功能是“This extension will translate the URL in address bar”。
扩展截图
下载Short Cut for URL mapper扩展crx文件
下载Short Cut for URL mapper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tired of remembering the URLs ? Short Cut for URL mapper would enable you to configure the keyword to long URL mapping.
扩展基本信息
名称 | Short Cut for URL mapper |
ID | lafchflokhmpcoaondfeffplkdnoaelh |
官方URL | https://chromewebstore.google.com/detail/short-cut-for-url-mapper/lafchflokhmpcoaondfeffplkdnoaelh |
简介 | This extension will translate the URL in address bar |
文件大小 | 629 KB |
安装次数 | 17 |
当前版本 | 1.0 |
更新时间 | 2016-06-11 |
上架时间 | 2016-06-11 |
评分 | 5.00/5 共2次评分 |
开发者 | lwpro2 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Short Cut for URL mapper", "description": "This extension will translate the URL in address bar", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "commands": { "toggle": { "suggested_key": { "default": "Alt+Shift+A", "mac": "Command+Shift+Y" }, "description": "Display Id and URL of the current open\/active tab.", "global": true } }, "omnibox": { "keyword": "sc" }, "permissions": [ "tabs", "activeTab", "storage", "http:\/\/*.google.com\/", "https:\/\/*.google.com\/" ] } |