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) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copies a groovy URL: formatted html text based on the title - click the button then paste as rich text"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में The Groovy URL Snatcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |