URL Copy
This extension will copy the current tab's URL to your clipboard.
什麼是URL Copy?
URL Copy是由tubaguy50035開發的Chrome擴展程式,該擴展的主要功能是“This extension will copy the current tab's URL to your clipboard.”。
下載URL Copy擴展crx文件
下載URL Copy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension allows you to copy the URL of your active tab with one click!
擴展基本資訊
名稱 | |
ID | ipdfpenpabfdkmiegmhmfpoadnbddelj |
官方網址 | https://chrome.google.com/webstore/detail/url-copy/ipdfpenpabfdkmiegmhmfpoadnbddelj |
簡介 | This extension will copy the current tab's URL to your clipboard. |
檔案大小 | 9.95 KB |
安裝次數 | 103 |
目前版本 | 1.0 |
更新時間 | 2013-12-11 |
上架時間 | 2013-12-11 |
評分 | 3.67/5 共 3 次評分 |
開發者 | tubaguy50035 |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "URL Copy", "description": "This extension will copy the current tab's URL to your clipboard.", "version": "1.0", "permissions": [ "tabs", "clipboardWrite" ], "background": { "scripts": [ "bg.js" ], "pages": [ "background.html" ] }, "browser_action": { "default_title": "", "default_icon": "19.png" }, "icons": { "128": "icon.png" } } |