X-Favorites
X-Favorites - Easy to save and access your favorites in a popup or newtab page.
¿Qué es X-Favorites?
X-Favorites es una extensión de Chrome desarrollada por https://xfav.org, y su función principal es "X-Favorites - Easy to save and access your favorites in a popup or newtab page.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión X-Favorites
Descarga archivos de extensión X-Favorites en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
## X-Favorites > https://chrome.google.com/webstore/detail/eghkmobkiceahdbklhmcjbijpemmlabc #### Features - Bookmarks : Easy to save and access your favorites in a popup or newtab page. - Screen Crossing: Would you like visit your favorites on your phone? Just scan the QR code via an mobile app. Of course, any website you can get the QR code and cross screen to continue. - Synchronous: All the favorites can be synchronized on your any devices. - Share: For team usage? It's ok to share a public key to others, but your personals will still be private. - Searching: Find something among the favorites. Not found? Just press ENTER to search online. - Safe: You can host and manage your data on your own server. Safe as it is your data on our cloud is encrypted strictly. ◉You can use short keys as below to popup the page to access your Favorites : ``` Chrome OS: Ctrl+Shift+X Linux: Ctrl+Shift+X Mac OS X: Command+Shift+X Windows: Ctrl+Shift+X ``` #### UPDATE 3.5.0 2021-12-26 WE ARE BACK! Now we provide 3 new themes. You can select one on the OPTIONS page. If you have any idea, feel free to tell us. #### UPDATE 3.4.2 2021-03-06 Removed unused permission. Updated some UI. #### UPDATE 3.4 2019-08-23 Fixed a bug about the option page on mobile browsers which support extensions. #### UPDATE 3.3 2018-12-17 Now you can write the description and note of a favorite. It's useful when you want to remember something (such as username, email, agenda, etc.) about a website. #### UPDATE 3.2 2018-4-24 1.It loads recommend favorites from cloud in default. 2.Discover public favorites on the website. You can share yours to public. #### UPDATE 3.1 2017-10-4 1.After you type search keyword, then press Shift+Enter to open the first result link. 2.Improved option page. Now click the manage link it will auto fill the key in the login dialog. #### UPDATE 3.0 2017-8-7 It's finally here!!! Cloud-hosting is supported now. You can access your favorites on the extension and manage your favorites on the website. Also you can import your data to your cloud account. At the same time you can use self-host as before. #### Wake me up when 2.x ends!!! #### UPDATE 2.3 2017-07-24: 1.View any website URL QR Code via the context menu. 2.Fixed some minor bugs and improved UX. #### UPDATE 2.2 2017-07-22: Now you can search the text in the input when you press Enter! You can select a Search Engine in the option of the extension. Google is default. Also Sogou, Bing, 360So and Baidu is supported. Another feature: You can easily view the QR Code of your favorite link by putting your mouse on the favorite label . Just scan it with your mobile apps like WeChat or any others support scanning QR code. Then you can access your favorites quickly! #### UPDATE 2.1 2017-07-21: A search functionality is added to this extension. When you open the popup page, an input will be focused. Just type some text and the results which related with the text will show up.
Información Básica de la Extensión
Nombre | |
ID | eghkmobkiceahdbklhmcjbijpemmlabc |
URL Oficial | https://chrome.google.com/webstore/detail/x-favorites/eghkmobkiceahdbklhmcjbijpemmlabc |
Descripción | X-Favorites - Easy to save and access your favorites in a popup or newtab page. |
Tamaño del Archivo | 1.48 MB |
Cantidad de Instalaciones | 26 |
Versión Actual | 3.5.0 |
Última Actualización | 2021-12-22 |
Fecha de Publicación | 2019-08-23 |
Calificación | 4.00/5 Total de 4 Calificaciones |
Desarrollador | https://xfav.org |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://xfav.org/ |
URL de la Página de Política de Privacidad | https://xfav.org/policy.php |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "X-Favorites", "version": "3.5.0", "manifest_version": 2, "description": "X-Favorites - Easy to save and access your favorites in a popup or newtab page.", "browser_action": { "default_title": "X-Favorites", "default_icon": "icon.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com 'unsafe-eval'; object-src 'self'", "commands": { "_execute_browser_action": { "suggested_key": { "chromeos": "Ctrl+Shift+X", "linux": "Ctrl+Shift+X", "mac": "Ctrl+Shift+X", "windows": "Ctrl+Shift+X" } } }, "options_ui": { "page": "options.html" }, "chrome_url_overrides": { "newtab": "newtab.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "homepage_url": "https:\/\/xfav.org", "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "contextMenus" ], "background": { "scripts": [ "jquery-1.7.1.min.js", "background.js" ] }, "web_accessible_resources": [ "theme\/*", "img\/*" ] } |