Extreemit
Everything you ever wanted to add to Steemit
Extreemitとは何ですか?
Extreemitはitchykittenによって開発されたChromeの拡張機能で、その主な機能は「Everything you ever wanted to add to Steemit」です。
拡張機能のスクリーンショット
Extreemit拡張機能のCRXファイルをダウンロード
Extreemit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A UI mod for Steemit.com Currently has one feature, which allows you to toggle displaying 'Resteems' on Steemit.com user profiles. More to come! made by @itchykitten for use on steemit.com.
拡張機能の基本情報
名前 | |
ID | fongpbjdmmlocghoebbindiopneahhhk |
公式URL | https://chrome.google.com/webstore/detail/extreemit/fongpbjdmmlocghoebbindiopneahhhk |
説明 | Everything you ever wanted to add to Steemit |
ファイルサイズ | 53.01 KB |
インストール数 | 28 |
現在のバージョン | 0.0.1 |
最終更新日 | 2017-06-28 |
公開日 | 2017-06-28 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | itchykitten |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extreemit", "description": "Everything you ever wanted to add to Steemit", "version": "0.0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "48": "steem48.png", "128": "steem128.png" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/steemit.com\/*" ], "css": [ "toggle.css" ], "js": [ "jquery.js", "extreemit.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": true } } |