Link to Element
Easily send and receive direct links to any section within an HTML page.
Link to Element란 무엇입니까?
Link to Element은(는) Alex Dergachev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily send and receive direct links to any section within an HTML page."입니다.
확장 프로그램 스크린샷
Link to Element 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
chrome-xpath-link Did you ever want to deep link to a paragraph of an HTML page? If that section or paragrah has an HTML id attribute set, browsers will scroll to it if you append it to the URL hash https://github.com/dergachev/chrome-xpath-link#chrome-xpath-link This extension allows you to easily copy a direct link to any element (with or without id attribute) simply by right clicking on it, and selecting "Get link to XPath" from the context menu. Generally the paths will be of the following form: https://github.com/dergachev/chrome-xpath-link#readme/article/p-3 Upon visiting a URL that contains a valid xpath, the script will highgliht and scroll to that element. A valid xpath is either any standard XPath expression (eg //*[@id="dom-element-id"]/div[4]), or an encoding of one as produced by this script (eg dom-element-id/div-4). Installation To use the plugin, simply download this CRX package file: https://github.com/dergachev/chrome-xpath-link/blob/master/chrome-xpath-link.crx?raw=true Note that it may be out of date relative to the source. Inspiration XPath code shamelessly copied from the Firebug Lite chrome extension: http://getfirebug.com/firebuglite#Debug My Chrome extension development was greatly aided by this tool: https://github.com/Rob--W/Chrome-Extension-Reloader
확장 프로그램 기본 정보
이름 | Link to Element |
ID | enadmddipfodpmlnaajhofpkiephdhhe |
공식 URL | https://chromewebstore.google.com/detail/link-to-element/enadmddipfodpmlnaajhofpkiephdhhe |
설명 | Easily send and receive direct links to any section within an HTML page. |
파일 크기 | 28.25 KB |
설치 횟수 | 239 |
현재 버전 | 0.2 |
최근 업데이트 | 2017-11-09 |
출시 날짜 | 2017-11-09 |
개발자 | Alex Dergachev |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dergachev/link-to-element |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Link to Element", "description": "Easily send and receive direct links to any section within an HTML page.", "version": "0.2", "permissions": [ "contextMenus" ], "background": { "scripts": [ "background.js" ] }, "icons": { "128": "link-to-element.png" }, "content_scripts": [ { "js": [ "lib\/jquery.min.js", "lib\/jquery.scrollto.min.js", "lib\/jquery.xpath.js", "link-to-element.helpers.js", "link-to-element.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "manifest_version": 2 } |