Positionable!

An extension for visually manipulating elements in the browser.

Positionable!คืออะไร?

Positionable! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Plummer และคุณลักษณะหลักของมันคือ "An extension for visually manipulating elements in the browser."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Positionable is a developer tool that lets you quickly manipulate elements the way you would in an image editor. Familiar workflows like dragging, nudging, align/distribute, and undo make it simple to place elements exactly where you need them to be. Once you're ready, you can copy styles to the clipboard or save them to disk. Designed for rapid styling, prototyping, working with sprites, etc.

PLEASE POST ISSUES HERE (with demo if possible):
https://github.com/andrewplummer/Positionable/issues

By default, it works on absolute and fixed positioned elements, however you can set a CSS selector to target exactly the elements you're interested in. Static elements will be forced to position "relative".

When working with sprites, you can similarly use both the mouse and keyboard to move the background position. Alternatively, double clicking on the background will detect contiguous sprites and snap the element dimensions and background position to match.

Work with multiple elements by dragging to select or holding SHIFT. All selected elements will move together, and can be aligned or distributed just as in popular image editing software.

Other features like rotation, undo, z-index ordering, and background "peeking" make positioning elements a breeze!                    

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

ชื่อ Positionable! Positionable!
ID hcakmjkjjgaehnnflnelfngbhnppgnpp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/positionable/hcakmjkjjgaehnnflnelfngbhnppgnpp
คำอธิบาย An extension for visually manipulating elements in the browser.
ขนาดไฟล์ 116 KB
จำนวนการติดตั้ง 1,920
เวอร์ชันปัจจุบัน 2.1.2
อัปเดตครั้งล่าสุด 2021-03-25
วันที่เผยแพร่ 2020-04-06
คะแนน 3.65/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา Andrew Plummer
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Positionable!",
    "version": "2.1.2",
    "short_name": "Positionable",
    "description": "An extension for visually manipulating elements in the browser.",
    "offline_enabled": true,
    "icons": {
        "16": "images\/app\/16.png",
        "32": "images\/app\/32.png",
        "48": "images\/app\/48.png",
        "128": "images\/app\/128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_icon": "images\/app\/16.png",
        "default_title": "Positionable!"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.html",
                "*.css",
                "images\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}