HTML for Basecamp
Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
HTML for Basecampとは何ですか?
HTML for BasecampはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.」です。
拡張機能のスクリーンショット
HTML for Basecamp拡張機能のCRXファイルをダウンロード
HTML for Basecamp拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
We started working on Basecamp and I needed to add some basic formatting to the text of the tasks and found it almost imposible with the current editor. When I found you could paste form another source some html formatted content I decided to venture myself into making a little extension to allow html insertion directly. 拡張機能の基本情報
| 名前 | |
| ID | kmnmhcolnmikliggbninabbbiboanocj |
| 公式URL | https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj |
| 説明 | Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor. |
| ファイルサイズ | 43.82 KB |
| インストール数 | 47 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2012-10-23 |
| 公開日 | 2012-10-23 |
| 評価 | 3.00/5 合計 2 レビュー |
| 開発者 | Unknown |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "HTML for Basecamp",
"version": "0.1",
"manifest_version": 2,
"description": "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.",
"icons": {
"128": "icon.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"https:\/\/basecamp.com\/*"
],
"js": [
"jquery.js",
"go.js",
"resize.js"
],
"css": [
"style.css"
]
}
]
} | |