Queue
The easiest way to schedule tweets and threads for Notion users.
Queue란 무엇입니까?
Queue은(는) https://queue.so에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The easiest way to schedule tweets and threads for Notion users."입니다.
확장 프로그램 스크린샷
Queue 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Twitter Scheduling Tool for Notion. Features: - Available for Notion on browsers: Chrome, Brave, Microsoft Edge, and Firefox - Available for Notion on desktop apps: Mac and Windows - Schedule unlimited tweets - Schedule unlimited threads - Schedule unlimited photos, GIFs, and videos - Schedule at any specific time, even a few years ahead. - Schedule threads that reference back to the first tweet - Real-time preview of how your tweets and threads will look on Twitter, directly in Notion, while you're typing. - Connect to any databases and views. - Create unlimited custom views - content calendar, content pipeline, etc. - Set a posting schedule and Queue automatically choose posting time, you don't have to think every time. By using this extension, you agree to Queue.so Terms of Service are available at https://www.queue.so/terms.
확장 프로그램 기본 정보
이름 | Queue |
ID | injmafaookciamgplnkakgcloohbbdjg |
공식 URL | https://chromewebstore.google.com/detail/queue/injmafaookciamgplnkakgcloohbbdjg |
설명 | The easiest way to schedule tweets and threads for Notion users. |
파일 크기 | 999 KB |
설치 횟수 | 820 |
현재 버전 | 1.16.6 |
최근 업데이트 | 2023-06-02 |
출시 날짜 | 2021-06-30 |
평점 | 4.50/5 총 16 개의 평점 |
개발자 | https://queue.so |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://www.queue.so |
도움말 페이지 URL | https://www.queue.so |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Queue", "description": "The easiest way to schedule tweets and threads for Notion users.", "icons": { "16": "\/icon16.png", "32": "\/icon32.png", "48": "\/icon48.png", "128": "\/icon128.png" }, "host_permissions": [ "https:\/\/www.notion.so\/" ], "permissions": [ "activeTab", "storage", "cookies" ], "background": { "service_worker": "scripts\/worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "scripts\/content.js" ] } ], "web_accessible_resources": [ { "extension_ids": [], "matches": [ "https:\/\/www.notion.so\/*" ], "resources": [ "preload.js", "app.js", "assets\/*" ] } ], "externally_connectable": { "matches": [ "https:\/\/www.notion.so\/*", "https:\/\/www.queue.so\/*" ] }, "version": "1.16.6" } |