dotjs universal

~/.js

什麼是dotjs universal?

dotjs universal是由p3lim開發的Chrome擴展程式,該擴展的主要功能是“~/.js”。

下載dotjs universal擴展crx文件

下載dotjs universal擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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