dotjs universal

~/.js

What is dotjs universal?

dotjs universal is a Chrome extension developed by p3lim, and its main feature is "~/.js".

Download dotjs universal Extension CRX File

Download dotjs universal 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

                        dotjs is a Chrome/Chromium browser extension that executes JavaScript and CSS files on websites based on their filename.

If you navigate to `www.google.com`, dotjs will execute `/scripts/google.com.js` and/or `/styles/google.com.css` if either of the files exist.

It will also execute `/scripts/default.js` and `/styles/default.css` for all your bootstrapping and library needs.

This makes it super easy to spruce up your favorite pages using JavaScript or CSS.

See https://github.com/p3lim/dotjs-universal for full installation instructions.

Works on any OS without any extra fuzz, based on the original code of defunkt.                    

Extension Basic Information

Name dotjs universal dotjs universal
ID mnnjfadhifkmdoalniglnmmpjggnfbam
Official URL https://chrome.google.com/webstore/detail/dotjs-universal/mnnjfadhifkmdoalniglnmmpjggnfbam
Description ~/.js
File Size 45.89 KB
Installation Count 106
Current Version 1.6.1
Last Updated 2014-08-05
Publish Date 2014-08-05
Rating 4.80/5 Total 5 Ratings
Developer p3lim
Payment Type free
Extension Website https://github.com/p3lim/dotjs-universal
Help Page URL https://github.com/p3lim/dotjs-universal/issues
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "dotjs universal",
    "manifest_version": 2,
    "minimum_chrome_version": "23",
    "version": "1.6.1",
    "description": "~\/.js",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "dotjs.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/*.js",
        "styles\/*.css"
    ]
}