My Style

Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits.

My Styleคืออะไร?

My Style เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Karthik Viswanathan และคุณลักษณะหลักของมันคือ "Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits."

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

screenshot

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

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

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

                        Usage:
You may dislike a given site's design and want to add your own touch--that is, your own style--to make it aesthetically pleasing. After installing the extension, visit the site (e.g. techcrunch.com) and hit control + m. You should see a textarea to the right of the browser window. Insert your custom CSS into it and view the results.

This CSS will be reinserted upon revisiting the site, thereby saving your styles. Pressing control + m once more will hide the textarea, but your contents will still be retained.

See https://github.com/karthikv/my-style (scroll down) for an example.

To speed up the process of styling, if you hold alt while clicking an element, a selector for that element will automatically be appended to the textarea editor. With this, you can circumvent the time it takes to inspect the element to find how to target it.

How it Works:
My Style is quite simple. It inserts a textarea into the page, looks for changes to the textarea's contents, and updates a dynamically inserted style tag appropriately. My Style employs local storage to make CSS changes persistent. It uses simple technologies for a simple result.

Icon made by Freepik (https://www.freepik.com/) from FlatIcon (http://www.flaticon.com)                    

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

ชื่อ My Style My Style
ID ljdhjpmbnkbengahefamnhmegbdifhlb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/my-style/ljdhjpmbnkbengahefamnhmegbdifhlb
คำอธิบาย Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits.
ขนาดไฟล์ 5.24 KB
จำนวนการติดตั้ง 2,953
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2019-01-20
วันที่เผยแพร่ 2019-01-19
คะแนน 3.91/5 รวมทั้งหมด 75 คะแนน
ผู้พัฒนา Karthik Viswanathan
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/karthikv/my-style
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "My Style",
    "description": "Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits.",
    "version": "0.3",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "my-style.css"
            ],
            "js": [
                "my-style.js"
            ],
            "run_at": "document_start"
        }
    ]
}