Updoots Adder
This extension lets you add to your favorites, on Updoots.com
什麼是Updoots Adder?
Updoots Adder是由https://updoots.com開發的Chrome擴展程式,該擴展的主要功能是“This extension lets you add to your favorites, on Updoots.com”。
擴展截圖
下載Updoots Adder擴展crx文件
下載Updoots Adder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
UPDATED! Hey everyone I have updated the chrome extension to use the new website! Leave a comment let me know how you like it. Thank you! WHAT IS IT? The Updoots Adder Chrome extension is built to add your favorite Internet URLs in organized bookmarks or folders within your updoots.com account. Makes for saving your favorite internet links easy while browsing the web. Just create an account at updoots.com and login into the chrome extension. Simply add the URL to the folder of your choice. Visit updoots.com to go back to those URLs you saved. *** Disclaimer: This chrome extension uses cookies, by you using the extension you agree to the use of our cookies.
擴展基本資訊
名稱 | Updoots Adder |
ID | adfejilhcbenglgcdllkakdoppighbkc |
官方網址 | https://chromewebstore.google.com/detail/updoots-adder/adfejilhcbenglgcdllkakdoppighbkc |
簡介 | This extension lets you add to your favorites, on Updoots.com |
檔案大小 | 125 KB |
安裝次數 | 21 |
目前版本 | 1.0.71 |
更新時間 | 2019-12-21 |
上架時間 | 2019-12-19 |
評分 | 5.00/5 共 2 次評分 |
開發者 | https://updoots.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://updoots.com/ |
說明頁面URL | http://updoots.com/Home/About |
隱私政策頁面URL | https://updoots.com/Privacy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Updoots Adder", "description": "This extension lets you add to your favorites, on Updoots.com", "version": "1.0.71", "manifest_version": 2, "homepage_url": "https:\/\/updoots.com\/", "browser_action": { "default_icon": "icons\/favicon.png", "default_title": "Updoots Adder: Add this!", "default_popup": "src\/browser_action\/browser_action.html" }, "icons": { "16": "icons\/favicon.png", "48": "icons\/favicon.png", "128": "icons\/favicon.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": true }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "permissions": [ "activeTab", "cookies", "tabs", "https:\/\/ajax.googleapis.com\/", "http:\/\/ajax.googleapis.com\/", "http:\/\/updoots.com\/", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.updoots.com\/*" ], "js": [ "src\/browser_action\/content.js" ], "run_at": "document_idle", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/browser_action\/content.js" ], "run_at": "document_end", "all_frames": true } ], "web_accessible_resources": [ "html\/htmlFileName.html", "styles\/*", "fonts\/*" ] } |