The Groovy URL Snatcher

Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text

什么是The Groovy URL Snatcher?

The Groovy URL Snatcher是由Francis Luong (Franco)开发的Chrome扩展程序,该扩展的主要功能是“Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text”。

扩展截图

screenshot
screenshot

下载The Groovy URL Snatcher扩展crx文件

下载The Groovy URL Snatcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Copies a groovy URL of formatted html based on the title of the web page.  Just click the button and it gets copied to your clipboard.  

Then paste into Evernote or any other program that can handle rich text.

---

This is a repeat-pattern that shows up in my work because I track tasks in Evernote/GoogleDocs so that I can get one-click access to the items on our internal Salesforce instance, which we use to track just about everything.

Usually this involves 6 steps:

- copy the work ID text
- paste into Evernote/other-website using plain text paste (CMD-SHIFT-v)
- copy the description text
- paste into Evernote/other-website
- copy URL
- select the text in Evernote/other-website, and apply URL to the text (CMD-k, CMD-v)

Now it's one click                    

扩展基本信息

名称 The Groovy URL Snatcher The Groovy URL Snatcher
ID fbbfhajbeonjmocodnkljndmooehmafi
官方URL https://chromewebstore.google.com/detail/the-groovy-url-snatcher/fbbfhajbeonjmocodnkljndmooehmafi
简介 Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text
文件大小 662 KB
安装次数 64
当前版本 1.1.2
更新时间 2023-08-24
上架时间 2019-01-11
评分 5.00/5 共1次评分
开发者 Francis Luong (Franco)
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/francisluong/chrome-extension-hackery
帮助页面URL https://github.com/francisluong/chrome-extension-hackery/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "The Groovy URL Snatcher",
    "short_name": "Gus_URL_Copy",
    "description": "Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text",
    "version": "1.1.2",
    "browser_action": {
        "default_icon": "gus_logo_large_square_icon_256a.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/gus.my.salesforce.com\/*",
                "*:\/\/gus.lightning.force.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "clipboardWrite"
    ],
    "icons": {
        "16": "gus_logo_large_square_icon_016a.png",
        "48": "gus_logo_large_square_icon_048a.png",
        "128": "gus_logo_large_square_icon_128a.png"
    }
}