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文件

下載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
官方網址 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"
    ]
}