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 - это расширение Chrome, разработанное Francis Luong (Franco), и его основная функция - "Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения The Groovy URL Snatcher

Скачайте файлы расширений 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"
    }
}