Persian Twitter

Improve Twitter & TweetDeck user experience for Persian users

Что такое Persian Twitter?

Persian Twitter - это расширение Chrome, разработанное Mohamad Jahani, и его основная функция - "Improve Twitter & TweetDeck user experience for Persian users".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Persian Twitter

Скачайте файлы расширений Persian Twitter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Improve Twitter and TweetDeck user experience for Persian users

Features:
- Ability to choose between 16 free Persian fonts
- Ability to enable fixed font for all tweets
- Save's the chosen font and settings in the browser localStorage and loads it whenever you use Twitter or TweetDeck
- Works for both Twitter and TweetDeck

This project is free and MIT licensed. You can check the source code in the following Github repository:
https://github.com/mamal72/persian-twitter

DO NOT FORGET to SUPPORT Persian font designers! You can find more info about them in mentioned Github repository.

------------------------------------------------------------

ویژگی‌ها:
- امکان انتخاب قلم از میان ۱۶ قلم آزاد فارسی
- امکان فعال‌سازی سایز ثابت قلم برای توییت‌ها
- ذخیره‌ی آخرین قلم انتخابی و تنظیمات در حافظه‌ی مرورگر و انتخاب آن‌ها به صورت پیش‌فرض برای مرورهای بعدی
- قابل استفاده برای توییتر و توییت‌دک

این پروژه به صورت آزاد با مجوز MIT منتشر شده است. شما می‌توانید سورس کد پروژه را در مخزن گیت‌هاب زیر بررسی و مورد استفاده قرار دهید.
https://github.com/mamal72/persian-twitter

لطفاً طراحان قلم فارسی را حمایت کنید! جهت کسب اطلاعات بیشتر، به مخزن گیت‌هاب ذکر شده مراجعه نمایید.                    

Основная информация о расширении

Название Persian Twitter Persian Twitter
ID jcpoagapgofdckllllifikmflhamhokd
Официальный URL https://chromewebstore.google.com/detail/persian-twitter/jcpoagapgofdckllllifikmflhamhokd
Описание Improve Twitter & TweetDeck user experience for Persian users
Размер файла 1.16 MB
Количество установок 480
Текущая Версия 2.3.0
Последнее Обновление 2018-07-15
Дата публикации 2018-07-15
Рейтинг 4.38/5 Всего 26 оценок
Разработчик Mohamad Jahani
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mamal72/persian-twitter
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "2.3.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/persian-twitter-16.png",
        "128": "images\/persian-twitter-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/page-chrome.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/persian-twitter-19.png",
            "38": "images\/persian-twitter-38.png"
        },
        "default_title": "Persian Twitter",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "fonts\/*.woff",
        "fonts\/*.woff2"
    ]
}