PermaLinkr

Share permalinks to specific sections (or fragments) of pages

PermaLinkr란 무엇입니까?

PermaLinkr은(는) Rohit Vighne에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Share permalinks to specific sections (or fragments) of pages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

PermaLinkr 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}