Copy All Urls
Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.
Copy All Urlsとは何ですか?
Copy All UrlsはVincent Paréによって開発されたChromeの拡張機能で、その主な機能は「Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.」です。
拡張機能のスクリーンショット
Copy All Urls拡張機能のCRXファイルをダウンロード
Copy All Urls拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Two features : - Copy all opened tabs URL into clipboard. 4 formats available : Text, HTML, JSON and custom format. - Paste to open all URLs in the clipboard into new tabs. You can use keyboard shortcuts and copy only selected tabs.
拡張機能の基本情報
名前 | Copy All Urls |
ID | djdmadneanknadilpjiknlnanaolmbfk |
公式URL | https://chromewebstore.google.com/detail/copy-all-urls/djdmadneanknadilpjiknlnanaolmbfk |
説明 | Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go. |
ファイルサイズ | 128 KB |
インストール数 | 317,430 |
現在のバージョン | 2.11 |
最終更新日 | 2021-06-02 |
公開日 | 2015-01-25 |
評価 | 4.61/5 合計 401 レビュー |
開発者 | Vincent Paré |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://vincepare.github.io/CopyAllUrl_Chrome/ |
ヘルプページのURL | https://github.com/vincepare/CopyAllUrl_Chrome/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_icon": "img\/umbrella_19.png", "default_title": "Copy URLs to clipboard", "default_popup": "popup.html" }, "description": "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.", "icons": { "128": "img\/umbrella_128.png" }, "background": { "scripts": [ "vendor\/jquery-1.7.2_min.js", "vendor\/encoder.js", "background.js" ] }, "commands": { "copy": { "suggested_key": { "default": "Alt+C" }, "description": "Copy" }, "paste": { "suggested_key": { "default": "Alt+V" }, "description": "Paste" } }, "name": "Copy All Urls", "options_page": "options.html", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "clipboardRead", "clipboardWrite", "notifications" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "version": "2.11", "manifest_version": 2 } |