Get Links
Quickly get url from selected link
What is Get Links?
Get Links is a Chrome extension developed by Kaffeine, and its main feature is "Quickly get url from selected link".
Extension Screenshots
Download Get Links Extension CRX File
Download Get Links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Sometimes its annoying opening all link one by one to get the complete url, this extension copy all url from a selection on a website page.
Extension Basic Information
Name | |
ID | cmcenhpehcokkhgamlekcbgdlejddplp |
Official URL | https://chrome.google.com/webstore/detail/get-links/cmcenhpehcokkhgamlekcbgdlejddplp |
Description | Quickly get url from selected link |
File Size | 18.9 KB |
Installation Count | 390 |
Current Version | 0.2 |
Last Updated | 2015-01-25 |
Publish Date | 2015-01-25 |
Rating | 1.50/5 Total 2 Ratings |
Developer | Kaffeine |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "contextScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Quickly get url from selected link", "manifest_version": 2, "name": "Get Links", "permissions": [ "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "clipboardWrite", "clipboardRead" ], "version": "0.2", "icons": { "16": "icon-bitty.png", "48": "icon-small.png", "128": "icon-large.png" }, "browser_action": { "default_icon": "icon-large.png", "default_title": "Get Links" } } |