TinyURL
A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.
什么是TinyURL?
TinyURL是由ByteCrafter开发的Chrome扩展程序,该扩展的主要功能是“A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.”。
扩展截图
下载TinyURL扩展crx文件
下载TinyURL扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension uses https://tinyurl.com to create a tiny URL from today's ridiculously enormous URLs that frequently fail when launching from email clients and other URI enabled software. With one click, the URL from your active tab will be sent to https://tinyurl.com, returning the tiny URL directly in to your clipboard, ready for pasting. There is no extra clicking, and (optionally) no notifications. As soon as you click the icon, you can paste the tiny URL where you want it.
扩展基本信息
名称 | TinyURL |
ID | jbnhjginpjihefndhjlhlggblfbefpod |
官方URL | https://chromewebstore.google.com/detail/tinyurl/jbnhjginpjihefndhjlhlggblfbefpod |
简介 | A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard. |
文件大小 | 12.51 KB |
安装次数 | 2,242 |
当前版本 | 2019.9.27.22 |
更新时间 | 2019-09-30 |
上架时间 | 2019-09-28 |
评分 | 3.67/5 共3次评分 |
开发者 | ByteCrafter |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TinyURL", "short_name": "TinyURL", "version": "2019.9.27.22", "author": "Robert A Moreno II", "description": "A one-click tool to generate a tiny URL (https:\/\/tinyurl.com) from your current URL and automatically copy it to the clipboard.", "permissions": [ "https:\/\/tinyurl.com\/", "activeTab", "tabs", "clipboardWrite", "storage", "contextMenus" ], "icons": { "16": "images\/tinyurl_16.png", "32": "images\/tinyurl_32.png", "48": "images\/tinyurl_48.png", "64": "images\/tinyurl_64.png", "128": "images\/tinyurl_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Create a TinyURL" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ] } |