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 là gì?

The Groovy URL Snatcher là một tiện ích mở rộng Chrome được phát triển bởi Francis Luong (Franco), và tính năng chính của nó là "Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng The Groovy URL Snatcher

Tải xuống các tệp mở rộng The Groovy URL Snatcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên The Groovy URL Snatcher The Groovy URL Snatcher
ID fbbfhajbeonjmocodnkljndmooehmafi
URL Chính Thức https://chromewebstore.google.com/detail/the-groovy-url-snatcher/fbbfhajbeonjmocodnkljndmooehmafi
Mô tả Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text
Kích Thước Tệp 662 KB
Số Lần Cài Đặt 64
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2023-08-24
Ngày Phát Hành 2019-01-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Francis Luong (Franco)
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/francisluong/chrome-extension-hackery
URL Trang Trợ Giúp https://github.com/francisluong/chrome-extension-hackery/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}