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. 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |