Copy Quote Link

share page text and the link with any formats

Copy Quote Link क्या है?

Copy Quote Link negokaz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "share page text and the link with any formats"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Copy Quote Link एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        # Features

- 🔗 Copy links that contain page title and text content from context menu
- 🔦 Supports for creating a link which can highlight selected text (Scroll To Text Fragment)
- 📝 You can make your own templates to copy

# Usage

- right-click on a page and select a template from "Copy link as" context menu
OR
- press Ctrl+Shift+X (windows/linux) or Command+Shift+X (mac) and select a template on the popup view

For more details, please see the following page.

https://github.com/negokaz/chrome-copy-quote-link#usage

# Custom Templates

To custom the context menu, you can create templates from the extension option page.

You can find some examples on the following page.

https://github.com/negokaz/chrome-copy-quote-link/blob/master/docs/template_examples.md                    

एक्सटेंशन की मूल जानकारी

नाम Copy Quote Link Copy Quote Link
ID ghekfhokmbflcadbpnpghlmkokcbipde
आधिकारिक URL https://chromewebstore.google.com/detail/copy-quote-link/ghekfhokmbflcadbpnpghlmkokcbipde
विवरण share page text and the link with any formats
फ़ाइल का आकार 1.84 MB
स्थापना संख्या 48
वर्तमान संस्करण 0.2.1
अंतिम अपडेट 2020-08-05
प्रकाशन तिथि 2020-07-09
डेवलपर negokaz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/negokaz/chrome-copy-quote-link
सहायता पृष्ठ URL https://github.com/negokaz/chrome-copy-quote-link/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Quote Link",
    "description": "share page text and the link with any formats",
    "version": "0.2.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus",
        "clipboardWrite"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "Copy Quote Link",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            }
        }
    }
}