Palettes for Tumblr
Colour scheme manager for Tumblr
What is Palettes for Tumblr?
Palettes for Tumblr is a Chrome extension developed by April Sylph, and its main feature is "Colour scheme manager for Tumblr".
Extension Screenshots
Download Palettes for Tumblr Extension CRX File
Download Palettes for Tumblr 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
Features: • Create your own palette, or choose from the built-in options • Change the page font independently of your chosen palette • Adjust the base font size Usage: Once you've installed the extension, click the extension icon in the browser toolbar to open its configuration. This extension only affects pages updated to use Tumblr's new web interface. This means Tumblr pages that do not usually offer the "Change Palette" button will not be affected.
Extension Basic Information
Name | Palettes for Tumblr |
ID | kgllgjbdbkempofinoadnlleigmgppfm |
Official URL | https://chromewebstore.google.com/detail/palettes-for-tumblr/kgllgjbdbkempofinoadnlleigmgppfm |
Description | Colour scheme manager for Tumblr |
File Size | 27.5 KB |
Installation Count | 1,083 |
Current Version | 1.0.2 |
Last Updated | 2023-02-14 |
Publish Date | 2022-03-02 |
Rating | 5.00/5 Total 2 Ratings |
Developer | April Sylph |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/AprilSylph/Palettes-for-Tumblr#readme |
Help Page URL | https://github.com/AprilSylph/Palettes-for-Tumblr/issues |
Privacy Policy Page URL | https://github.com/AprilSylph/AprilSylph/blob/master/PRIVACY.md |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Palettes for Tumblr", "version": "1.0.2", "description": "Colour scheme manager for Tumblr", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "browser_style": true, "default_icon": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "default_popup": "browser_action\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.tumblr.com\/*" ], "run_at": "document_start", "js": [ "lib\/browser-polyfill.min.js", "main.js" ], "css": [ "peepr_shadow.css" ] } ], "homepage_url": "https:\/\/github.com\/AprilSylph\/Palettes-for-Tumblr#readme", "options_ui": { "page": "options\/ui.html", "open_in_tab": true }, "permissions": [ "storage" ], "web_accessible_resources": [ "palettes.json", "paletteData.json" ], "minimum_chrome_version": "38", "browser_specific_settings": { "gecko": { "strict_min_version": "59.0a2" } } } |