Palettes for Tumblr
Colour scheme manager for Tumblr
ما هو Palettes for Tumblr؟
Palettes for Tumblr هو إضافة Chrome تم تطويرها بواسطة April Sylph، والميزة الرئيسية لها هي "Colour scheme manager for Tumblr".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Palettes for Tumblr
قم بتنزيل ملفات الامتداد Palettes for Tumblr بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/AprilSylph/Palettes-for-Tumblr/issues |
عنوان صفحة سياسة الخصوصية | 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" } } } |