PermaLinkr

Share permalinks to specific sections (or fragments) of pages

PermaLinkr क्या है?

PermaLinkr Rohit Vighne द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Share permalinks to specific sections (or fragments) of pages"।

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

screenshot
screenshot
screenshot

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

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

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

                        Ever wanted to link straight to a particular section in a long webpage? With PermaLinkr, that's easier than ever!

Many website authors add "fragment identifiers" to sections of their pages. By linking to a such a fragment by adding a "#" (hashtag) to the URL, your browser automatically scrolls to that section.

PermaLinkr makes it easy and convenient to create and share such permalinks. It automatically finds fragment identifiers in the headings and sections of webpages, and inserts links to them.

And when you right-click on any element on the page and activate PermaLinkr, it automatically scans the area above it, and copies the closest-matching URL to your clipboard for easy sharing!

Note: PermaLinkr is not guaranteed to work the same on all webpages, since it relies on website authors or engines properly tagging their pages.

The PermaLinkr icon is made by Freepik from www.flaticon.com, and is licensed under "CC BY 3.0" (creativecommons.org/licenses/by/3.0/).                    

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

नाम PermaLinkr PermaLinkr
ID nhblbgdabkonkbecpnnbdjnbkkbfhkfe
आधिकारिक URL https://chromewebstore.google.com/detail/permalinkr/nhblbgdabkonkbecpnnbdjnbkkbfhkfe
विवरण Share permalinks to specific sections (or fragments) of pages
फ़ाइल का आकार 28.24 KB
स्थापना संख्या 18
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2016-08-09
प्रकाशन तिथि 2016-08-08
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Rohit Vighne
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/rvighne/PermaLinkr
सहायता पृष्ठ URL https://github.com/rvighne/PermaLinkr/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PermaLinkr",
    "description": "Share permalinks to specific sections (or fragments) of pages",
    "version": "1.1.0",
    "permissions": [
        "contextMenus",
        "clipboardWrite",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        }
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "web_accessible_resources": [
        "icons\/icon.svg"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "styles\/content.css"
            ]
        }
    ]
}