Palettes for Tumblr
Colour scheme manager for Tumblr
Palettes for Tumblr क्या है?
Palettes for Tumblr April Sylph द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Colour scheme manager for Tumblr"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Palettes for Tumblr एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" } } } |