dotjs universal

~/.js

dotjs universal란 무엇입니까?

dotjs universal은(는) p3lim에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "~/.js"입니다.

dotjs universal 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 dotjs universal dotjs universal
ID mnnjfadhifkmdoalniglnmmpjggnfbam
공식 URL https://chrome.google.com/webstore/detail/dotjs-universal/mnnjfadhifkmdoalniglnmmpjggnfbam
설명 ~/.js
파일 크기 45.89 KB
설치 횟수 106
현재 버전 1.6.1
최근 업데이트 2014-08-05
출시 날짜 2014-08-05
평점 4.80/5 총 5 개의 평점
개발자 p3lim
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/p3lim/dotjs-universal
도움말 페이지 URL https://github.com/p3lim/dotjs-universal/issues
지원되는 언어 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"
    ]
}