Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
Wordpress Toolbar Toggleとは何ですか?
Wordpress Toolbar ToggleはBrandon S.によって開発されたChromeの拡張機能で、その主な機能は「This extension will hide or show the admin toolbar on Wordpress sites」です。
Wordpress Toolbar Toggle拡張機能のCRXファイルをダウンロード
Wordpress Toolbar Toggle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to click the icon to show/hide the Wordpress admin bar when working on your Wordpress site. Update! Version 2 persists the enable/disabled state across refresh! Contributions appreciated, please follow standard contributing practices: https://github.com/BrandonS8/wp-admin-bar
拡張機能の基本情報
名前 | Wordpress Toolbar Toggle |
ID | eihdbleeejdadggpdmpchjiflglepphc |
公式URL | https://chromewebstore.google.com/detail/wordpress-toolbar-toggle/eihdbleeejdadggpdmpchjiflglepphc |
説明 | This extension will hide or show the admin toolbar on Wordpress sites |
ファイルサイズ | 25.96 KB |
インストール数 | 59 |
現在のバージョン | 2.0 |
最終更新日 | 2018-08-16 |
公開日 | 2018-08-16 |
開発者 | Brandon S. |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Wordpress Toolbar Toggle", "description": "This extension will hide or show the admin toolbar on Wordpress sites", "version": "2.0", "browser_action": { "default_icon": "icon.png", "title": "WPA" }, "permissions": [ "tabs", "notifications", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "toggle.js" ], "run_at": "document_end", "all_frames": true } ] } |