Copy Hyperlink Text
An extension to copy the text content of hyperlinks (text content)
Copy Hyperlink Text क्या है?
Copy Hyperlink Text chrisblupodev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to copy the text content of hyperlinks (text content)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy Hyperlink Text एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
An extension to copy the text content of hyperlinks with right click (outerText). When a user invokes the context menu, right clicks, and selects item "Copy Hyperlink Text" chrome will open a prompt dialog so the user may manually copy the text within a hyperlink For example> GOOGLE And also GOOGLE Among other tag combinations Copy Hyperlink Text will prompt the user to copy the text "GOOGLE" in a chrome prompt dialog - Copy Hyperlink Text uses the google chrome prompt dialog allowing the user to manually copy text - Copy Hyperlink Text does not automatically copy to the clipboard on a native operating system (it's a sandbox javascript limitation) - I will automatically copy to the native clipboard once javascript has a standardized way to access the operating system clipboard - Copy Hyperlink Text does not copy text inside or nested in
एक्सटेंशन की मूल जानकारी
नाम | |
ID | fdodcolnmmcdbpmodjomckomehboeojk |
आधिकारिक URL | https://chrome.google.com/webstore/detail/copy-hyperlink-text/fdodcolnmmcdbpmodjomckomehboeojk |
विवरण | An extension to copy the text content of hyperlinks (text content) |
फ़ाइल का आकार | 1.03 MB |
स्थापना संख्या | 736 |
वर्तमान संस्करण | 1.3.2 |
अंतिम अपडेट | 2014-05-24 |
प्रकाशन तिथि | 2014-05-24 |
रेटिंग | 1.73/5 कुल 11 रेटिंग्स |
डेवलपर | chrisblupodev |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Hyperlink Text", "description": "An extension to copy the text content of hyperlinks (text content<\/a>)", "version": "1.3.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "manifest_version": 2 } |