Wordpress Toolbar Toggle
This extension will hide or show the admin toolbar on Wordpress sites
Wordpress Toolbar Toggle क्या है?
Wordpress Toolbar Toggle Brandon S. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will hide or show the admin toolbar on Wordpress sites"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wordpress Toolbar Toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } ] } |