Scratch Editor Messages
Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Scratch Editor Messagesとは何ですか?
Scratch Editor MessagesはGrannyCookiesによって開発されたChromeの拡張機能で、その主な機能は「Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.」です。
拡張機能のスクリーンショット
Scratch Editor Messages拡張機能のCRXファイルをダウンロード
Scratch Editor Messages拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension, adds a unobtrusive button to the Scratch Editor. It will automatically change itself to the amount of messages you currently have. (Also, the button acts as a single-click way to get to the messages page) Made by Alex Bates AKA GrannyCookies
拡張機能の基本情報
名前 | |
ID | keimlfjkekbehbegbnojedobedfenbbf |
公式URL | https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf |
説明 | Adds a messages counter to the scratch.mit.edu editor. It's helpful, really. |
ファイルサイズ | 38.51 KB |
インストール数 | 236 |
現在のバージョン | 1.0 |
最終更新日 | 2014-12-27 |
公開日 | 2014-12-27 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | GrannyCookies |
支払い方法 | free |
拡張機能のウェブサイト | http://scratch.mit.edu |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scratch Editor Messages", "version": "1.0", "description": "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.", "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/scratch.mit.edu\/*" ], "js": [ "script.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "http:\/\/scratch.mit.edu\/*" ], "manifest_version": 2, "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src http:\/\/scratch.mit.edu; img-src http:\/\/scratch.mit.edu" } |