Photo Rules

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

Photo Rules란 무엇입니까?

Photo Rules은(는) Paolodemo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension draws guide lines on images. It is usefull to study photo composition."입니다.

확장 프로그램 스크린샷

screenshot

Photo Rules 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}