Jquery Fragment Selector

Use Url Fragments to scroll an item into view.

Jquery Fragment Selectorคืออะไร?

Jquery Fragment Selector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Worenklein และคุณลักษณะหลักของมันคือ "Use Url Fragments to scroll an item into view."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jquery Fragment Selector

ดาวน์โหลดไฟล์ส่วนขยาย Jquery Fragment Selector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Jquery Fragment Selector Jquery Fragment Selector
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
}