Custom Blogger Extension
Custom hacks for blogger developers
What is Custom Blogger Extension?
Custom Blogger Extension is a Chrome extension developed by Muhammad Abu 'l-Gharaniq, and its main feature is "Custom hacks for blogger developers".
Extension Screenshots
Download Custom Blogger Extension Extension CRX File
Download Custom Blogger Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Chrome Extension for Blogger (blogger.com) developers, with shortcuts and basic edits. Shortcuts CTRL + SPACE to open blog URL in new tap from html editor page CTRL + S to save template code CTRL + I to open live preview on html editor page Snippets New feature for code snippets, select your snippet, and it will be copied directly to clipboard. Note: Sometimes snippet selector not showing, don't worry just click on any button on keyboard, or refresh the editor page.
Extension Basic Information
Name | Custom Blogger Extension |
ID | edbhcnncibhjdeflaagkbdklifcdklmc |
Official URL | https://chromewebstore.google.com/detail/custom-blogger-extension/edbhcnncibhjdeflaagkbdklifcdklmc |
Description | Custom hacks for blogger developers |
File Size | 16.39 KB |
Installation Count | 503 |
Current Version | 0.0.2 |
Last Updated | 2020-09-02 |
Publish Date | 2020-09-01 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Muhammad Abu 'l-Gharaniq |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/midoghranek/custom-blogger |
Privacy Policy Page URL | https://ghranek.com/privacy |
Supported Languages | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Blogger Extension", "description": "Custom hacks for blogger developers", "version": "0.0.2", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.blogger.com\/*" ], "js": [ "scripts\/secret.js", "scripts\/snippetsData.js", "scripts\/snippets.js", "scripts\/content.js" ] } ], "browser_action": { "default_icon": "assets\/icon16.png", "default_popup": "public\/popup.html" } } |