STTF Url Generator

Generate a url with text fragment and copy it to the clipboard or open it in a new tab.

STTF Url Generator क्या है?

STTF Url Generator Chun Liu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate a url with text fragment and copy it to the clipboard or open it in a new tab."।

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

screenshot

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

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

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

                        This extension helps to generate a url with the text fragment in it based on the selected text on the web page, and then copies the generated url to the clipboard or opens it in a new tab based on users' action. With this url, the browser will automatically scroll to and highlight the text fragment on the page so that users would be able to find the text more quickly and accurately. 

Features: 
- Copy the text fragment url to the clipboard. 
- Multiple text fragment support: open the 1st text fragment url in a new tab, select the 2nd text fragment and generate the url. Repeat if there are more text fragment you want to select. 
- Copy the select text and the generated url in Markdown format.                    

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

नाम STTF Url Generator STTF Url Generator
ID mlihnffnlcfgjkkmigdgahgpfpfddafo
आधिकारिक URL https://chromewebstore.google.com/detail/sttf-url-generator/mlihnffnlcfgjkkmigdgahgpfpfddafo
विवरण Generate a url with text fragment and copy it to the clipboard or open it in a new tab.
फ़ाइल का आकार 12.9 KB
स्थापना संख्या 201
वर्तमान संस्करण 1.3
अंतिम अपडेट 2020-07-05
प्रकाशन तिथि 2020-07-04
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Chun Liu
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://chunliu.github.io/sttf-url-generator/
सहायता पृष्ठ URL https://github.com/chunliu/sttf-url-generator/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "STTF Url Generator",
    "version": "1.3",
    "author": "Chun Liu",
    "description": "Generate a url with text fragment and copy it to the clipboard or open it in a new tab.",
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/sttf-url16.png",
        "32": "images\/sttf-url32.png",
        "48": "images\/sttf-url48.png",
        "128": "images\/sttf-url128.png"
    },
    "minimum_chrome_version": "80"
}