Palettes for Tumblr
Colour scheme manager for Tumblr
什么是Palettes for Tumblr?
Palettes for Tumblr是由April Sylph开发的Chrome扩展程序,该扩展的主要功能是“Colour scheme manager for Tumblr”。
扩展截图
下载Palettes for Tumblr扩展crx文件
下载Palettes for Tumblr扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Palettes for Tumblr |
ID | kgllgjbdbkempofinoadnlleigmgppfm |
官方URL | https://chromewebstore.google.com/detail/palettes-for-tumblr/kgllgjbdbkempofinoadnlleigmgppfm |
简介 | Colour scheme manager for Tumblr |
文件大小 | 27.5 KB |
安装次数 | 1,083 |
当前版本 | 1.0.2 |
更新时间 | 2023-02-14 |
上架时间 | 2022-03-02 |
评分 | 5.00/5 共2次评分 |
开发者 | April Sylph |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/AprilSylph/Palettes-for-Tumblr#readme |
帮助页面URL | https://github.com/AprilSylph/Palettes-for-Tumblr/issues |
隐私政策页面URL | https://github.com/AprilSylph/AprilSylph/blob/master/PRIVACY.md |
支持的语言 | 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" } } } |