Devtools Rulers

Adds rulers panel to devtools!

What is Devtools Rulers?

Devtools Rulers is a Chrome extension developed by http://tolya.me/rulers, and its main feature is "Adds rulers panel to devtools!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Devtools Rulers Extension CRX File

Download Devtools Rulers extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        NEW in 1.5! Fixed some bugs and impoved work!

Rulers are just a simple divs that helps you modify your styles.

Important feature: you will not lost your rulers after page reload.

Please send any feedback that needs to be implemented or upgraded!                    

Extension Basic Information

Name Devtools Rulers Devtools Rulers
ID aoojlhjjgjhndkblocmajmekmdbfdkhj
Official URL https://chrome.google.com/webstore/detail/devtools-rulers/aoojlhjjgjhndkblocmajmekmdbfdkhj
Description Adds rulers panel to devtools!
File Size 3.69 MB
Installation Count 2,488
Current Version 1.5
Last Updated 2017-06-26
Publish Date 2017-06-26
Rating 2.63/5 Total 19 Ratings
Developer http://tolya.me/rulers
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Devtools Rulers",
    "short_name": "Rulers",
    "version": "1.5",
    "description": "Adds rulers panel to devtools!",
    "devtools_page": "devtools\/devtools.html",
    "background": {
        "page": "background\/background.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "injections\/ui.css"
            ],
            "js": [
                "common\/utils.js",
                "injections\/ui.js",
                "common\/handlebars.js",
                "common\/lodash.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "default_locale": "en"
}