Star JsFiddles

This extension allows you to star JsFiddles with one click, so you can access it right away

Star JsFiddlesคืออะไร?

Star JsFiddles เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CrimsonD และคุณลักษณะหลักของมันคือ "This extension allows you to star JsFiddles with one click, so you can access it right away"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Star JsFiddles

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

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

                        A nifty tool for starring JsFiddle pages.

A button is injected into every JsFiddle page you open.  With one click you can now star (or un-star) any JsFiddle page you like.

Or by using the browser action (icon next to the omnibar) to view a complete list of all your starred fiddles.  

Clicking on the link will take you to the JsFiddle straight away, while on the icon will un-star (remove) the link from your library.  

Also, if you are logged in on the JsFiddle website, you popup will be personalized with your username (clicking it will take you to your JsFiddle dashboard).  

The starred pages are sync'd to your google account, so be sure to log-in and enjoy this tool across all your devices.

Version History
V1.0) Initial release
V1.1) Added Google Analytics                    

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

ชื่อ Star JsFiddles Star JsFiddles
ID bekmpkhiehmaagcampjniialbpclioae
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/star-jsfiddles/bekmpkhiehmaagcampjniialbpclioae
คำอธิบาย This extension allows you to star JsFiddles with one click, so you can access it right away
ขนาดไฟล์ 127 KB
จำนวนการติดตั้ง 89
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2013-10-14
วันที่เผยแพร่ 2013-10-14
ผู้พัฒนา CrimsonD
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Star JsFiddles",
    "description": "This extension allows you to star JsFiddles with one click, so you can access it right away",
    "version": "1.1",
    "minimum_chrome_version": "20",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/jsfiddle.net\/*",
        "https:\/\/ssl.google-analytics.com\/ga.js",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/jsfiddle.net\/*"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "crimsond.common.js",
                "crimsond.star.jsfiddles.common.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "jquery.min.map",
        "images\/star.png",
        "images\/starred.png",
        "ga.js"
    ]
}