Photo Rules

This extension draws guide lines on images. It is usefull to study photo composition.

Photo Rulesคืออะไร?

Photo Rules เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paolodemo และคุณลักษณะหลักของมันคือ "This extension draws guide lines on images. It is usefull to study photo composition."

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

screenshot

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

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

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

                        Update 0.6: Minor bugfix
Update 0.5: Added banner
            fixed functionality in Flickr (only in single photo view)
Update 0.4: fixed jquery min.map error
Update 0.3: added Triangles

---------------------------------------------------------------

This extension draws guide lines on images. It is usefull to study photo composition.
Usage: click before on the button in the toolbar and then on the image you want to study. A new tab will be opened containing the image with the following guides:
Center lines
Triangles
Rule of Thirds
Rule of Fifths
Diagonal lines
Golden section
Golden spiral                    

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

ชื่อ Photo Rules Photo Rules
ID llomjalehmbhidabdjdbiadoeeioabbb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/photo-rules/llomjalehmbhidabdjdbiadoeeioabbb
คำอธิบาย This extension draws guide lines on images. It is usefull to study photo composition.
ขนาดไฟล์ 839 KB
จำนวนการติดตั้ง 201
เวอร์ชันปัจจุบัน 0.6
อัปเดตครั้งล่าสุด 2014-11-13
วันที่เผยแพร่ 2014-11-13
คะแนน 4.14/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Paolodemo
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Photo Rules",
    "description": "This extension draws guide lines on images. It is usefull to study photo composition.",
    "version": "0.6",
    "web_accessible_resources": [
        "js\/jquery-2.0.3.min.map"
    ],
    "icons": {
        "16": "images\/photo16.png",
        "48": "images\/photo48.png",
        "128": "images\/photo128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/photo16.png",
            "19": "images\/photo19.png",
            "38": "images\/photo38.png",
            "48": "images\/photo48.png",
            "128": "images\/photo128.png"
        },
        "default_title": "Photo Rules"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "js\/jquery-2.0.3.min.js",
                "js\/jquery.svg.min.js",
                "js\/jquery.mousewheel.js",
                "draw_rule.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs"
    ]
}