Copy URL with Title (plain text/markdown)
Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown.
Copy URL with Title (plain text/markdown) क्या है?
Copy URL with Title (plain text/markdown) https://takashyx.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy URL with Title (plain text/markdown) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
--------------------------------------------------------------------------------
UPDATES
--------------------------------------------------------------------------------
Ver 1.1.1.1:
FIX: Description on chrome web store
Ver 1.1.1.0:
ADD: Duration settings for notification
Ver 1.1.0.6:
FIX: Workaround for non-https pages
Ver 1.1.0.5:
FIX: Correction of the phenomenon that text is not copied to the clipboard
ADD: Option menu
ADD: New customizable toast UI
--------------------------------------------------------------------------------
FEATURES
--------------------------------------------------------------------------------
1. Copy title and URL in text format
Control+C(Win/Linux) / Command+C(Mac)
2. Copy in markdown link format
Alt+C(Win/Linux) / Option+C(Mac)
3. Normal copy
Select -> Control+C(Win/Linux) / Command+C(Mac)
4.Settings
Right click the extension icon -> Options
-------------------------------------------------------------------------------- एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | bpcogbhmkdjaohcmlghhkiohmldpnkoh |
| आधिकारिक URL | https://chromewebstore.google.com/detail/copy-url-with-title-plain/bpcogbhmkdjaohcmlghhkiohmldpnkoh |
| विवरण | Copy the title and URL in plain text/markdown format by keyboard shortcuts: Ctrl+C/Cmd+C for plain text, Alt+C/Opt+C for markdown. |
| फ़ाइल का आकार | 16.72 KB |
| स्थापना संख्या | 1,343 |
| वर्तमान संस्करण | 1.1.1.1 |
| अंतिम अपडेट | 2022-08-20 |
| प्रकाशन तिथि | 2020-04-02 |
| रेटिंग | 3.07/5 कुल 14 रेटिंग्स |
| डेवलपर | https://takashyx.com |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| एक्सटेंशन वेबसाइट | http://takashyx.com/portfolio/copy-url-with-title-2015/ |
| समर्थित भाषाएँ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Copy URL with Title (plain text\/markdown)",
"short_name": "Copy URL with Title",
"description": "Copy the title and URL in plain text\/markdown format by keyboard shortcuts: Ctrl+C\/Cmd+C for plain text, Alt+C\/Opt+C for markdown.",
"version": "1.1.1.1",
"icons": {
"128": "icon_128.png",
"48": "icon_048.png",
"32": "icon_032.png",
"16": "icon_016.png"
},
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"copyurlwithtitle.js",
"toast.js",
"options.js"
],
"run_at": "document_start"
}
]
} | |