Jquery Fragment Selector
Use Url Fragments to scroll an item into view.
Jquery Fragment Selector란 무엇입니까?
Jquery Fragment Selector은(는) David Worenklein에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Url Fragments to scroll an item into view."입니다.
Jquery Fragment Selector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension hijacks the html fragment to allow it to target a general-purpose jQuery selector rather than just an or a DOM identifier.
This is implemented in the spirit of http://simonstl.com/articles/cssFragID.html
The extension is only enabled when the fragment starts with #css(JQUERY_SELECTOR)
For example, using jQFS, he following is possible: "point to the seventh row in the first table on the page": http://en.wikipedia.org/wiki/List_of_job_scheduler_software#css(tr:nth-of-type(7))
Additional Features:
The extension features an expanded version of jQuery's :contains selector, :containsExactly (which is case sensitive): "point to the first table cell whose text consists solely of the word "Flux" http://en.wikipedia.org/wiki/List_of_job_scheduler_software#css(td:containsExactly('Flux'))
Extension detection:
You may detect this extension via this asynchronous technique: function detectExtension(extensionId, callback) { var img; img = new Image(); img.onload = function() { callback(true); }; img.onerror = function() { callback(false); }; img.src = "chrome-extension://" + extensionId + "/test.png"; }
a la http://stackoverflow.com/questions/6293498/check-whether-user-has-a-chrome-extension-installed#answer-27930310 확장 프로그램 기본 정보
| 이름 | |
| ID | lmohjchbdlfahhdakeledkneklknfkid |
| 공식 URL | https://chrome.google.com/webstore/detail/jquery-fragment-selector/lmohjchbdlfahhdakeledkneklknfkid |
| 설명 | Use Url Fragments to scroll an item into view. |
| 파일 크기 | 39.83 KB |
| 설치 횟수 | 19 |
| 현재 버전 | 0.2.1 |
| 최근 업데이트 | 2015-06-17 |
| 출시 날짜 | 2015-06-17 |
| 개발자 | David Worenklein |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://github.com/worenklein/fragment-selector |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"default_locale": "en",
"version": "0.2.1",
"description": "Use Url Fragments to scroll an item into view.",
"browser_action": {
"default_icon": {
"19": "img\/reticle-19.png",
"38": "img\/reticle-38.png"
},
"default_title": "jQuery Fragment Selector",
"default_popup": "popup.html"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery-2.1.4.min.js",
"page.js"
]
}
],
"web_accessible_resources": [
"test.png"
],
"manifest_version": 2
} | |