Persian Twitter
Improve Twitter & TweetDeck user experience for Persian users
Persian Twitter란 무엇입니까?
Persian Twitter은(는) Mohamad Jahani에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improve Twitter & TweetDeck user experience for Persian users"입니다.
확장 프로그램 스크린샷
Persian Twitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } |