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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}