f9db43a2e9
* Add key * Add: a second index uuid, push changes to sync controller * Add: sync.js * Add: tokenManager * Change: log entire body for http error * Add: token flow * Fix: minor * Fix: move cleanup to stop function * Add: syncNow * Update dependencies * Fix: handle 401 error * Add: handle 401 error * Fix: then -> catch * Add: sync options to options page * Update db-to-cloud * Change: make prefs.set return a promise * Add: disble selector if connected * Add: update selector state * Fix: return promise in prefs.set * Fix: manage complex state * Fix: handle prefs change * Change: manage sync status in background * Add: show current status in the UI * Add: schedule a faster sync when db changed * Update dependencies * Add: include progress in sync status * Add: more detail status * Show status text only * Bump dependencies * Change: show loaded and total * Fix: syncTarget is undefined * Add: google and onedrive * Fix: token is not reused * Bump dependencies * Don't use minified version since it is hard to debug * Fix: expire time is incorrect * Change: switch google to code flow * Bump dependencies * Change: only modify pref if the initialization success? * Don't stop the sync if the first sync is not triggered by the user * Add: implement refresh token * Change: switch microsoft to code flow * Add: subtract expire with a latency * Add: microsoft client secret * Add: display error message * Fix: fromPref is not used * Change: try to revoke the token when log out * Add: revoke dropbox token * Fix: Google only generates one refresh token for one user by default * Bump dependencies, fix onedrive list issue * Fix: arguments sent to sync.put is wrong * Fix: don't schedule a sync on db changed if not connected * Bump dependencies. Fix issue of switching drives * Bump db-to-cloud, fix switching drive issue * Fix: only auth user on 401 error, don't display login window without user interaction * Fix: don't call revoke() if token is undefined * Add: login button to generate the access token interactively * Fix: make addMissingProperties a local * Fix: store missing props in an object * Fix: sync.getStatus should be sync * LATENCY -> NETWORK_LATENCY * Fix: cache the token forever if there is no expire time e.g. dropbox * Add some comments * Fix: i18n * Fix: i18n sync status * fixup! Fix: i18n sync status * Fix: 'sync to cloud' is displayed twice
140 lines
3.7 KiB
JSON
140 lines
3.7 KiB
JSON
{
|
|
"name": "Stylus",
|
|
"version": "1.5.6",
|
|
"minimum_chrome_version": "49",
|
|
"description": "__MSG_description__",
|
|
"homepage_url": "https://add0n.com/stylus.html",
|
|
"manifest_version": 2,
|
|
"icons": {
|
|
"16": "/images/icon/16.png",
|
|
"32": "/images/icon/32.png",
|
|
"48": "/images/icon/48.png",
|
|
"128": "/images/icon/128.png"
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"webNavigation",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"contextMenus",
|
|
"storage",
|
|
"alarms",
|
|
"identity",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"js/polyfill.js",
|
|
"js/promisify.js",
|
|
"js/messaging.js",
|
|
"js/msg.js",
|
|
"js/storage-util.js",
|
|
"js/sections-util.js",
|
|
"js/worker-util.js",
|
|
"js/prefs.js",
|
|
"js/script-loader.js",
|
|
"js/usercss.js",
|
|
"js/cache.js",
|
|
"vendor/semver-bundle/semver.js",
|
|
"vendor/db-to-cloud/db-to-cloud.min.js",
|
|
"vendor/uuid/uuid.min.js",
|
|
"background/token-manager.js",
|
|
"background/sync.js",
|
|
"background/content-scripts.js",
|
|
"background/db.js",
|
|
"background/style-manager.js",
|
|
"background/navigator-util.js",
|
|
"background/icon-util.js",
|
|
"background/background.js",
|
|
"background/usercss-helper.js",
|
|
"background/style-via-api.js",
|
|
"background/search-db.js",
|
|
"background/update.js",
|
|
"background/openusercss-api.js"
|
|
]
|
|
},
|
|
"commands": {
|
|
"_execute_browser_action": {},
|
|
"openManage": {
|
|
"description": "__MSG_openManage__"
|
|
},
|
|
"styleDisableAll": {
|
|
"description": "__MSG_disableAllStyles__"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"run_at": "document_start",
|
|
"all_frames": true,
|
|
"match_about_blank": true,
|
|
"js": [
|
|
"js/polyfill.js",
|
|
"js/promisify.js",
|
|
"js/msg.js",
|
|
"js/prefs.js",
|
|
"content/style-injector.js",
|
|
"content/apply.js"
|
|
]
|
|
},
|
|
{
|
|
"matches": ["http://userstyles.org/*", "https://userstyles.org/*"],
|
|
"run_at": "document_start",
|
|
"all_frames": true,
|
|
"js": ["content/install-hook-userstyles.js"]
|
|
},
|
|
{
|
|
"matches": ["https://openusercss.org/*", "https://openusercss.com/*"],
|
|
"run_at": "document_start",
|
|
"all_frames": false,
|
|
"js": ["content/install-hook-openusercss.js"]
|
|
},
|
|
{
|
|
"matches": [
|
|
"*://*/*.user.css",
|
|
"*://*/*.user.styl",
|
|
|
|
"file://*/*.user.css",
|
|
"file://*/*.user.styl",
|
|
|
|
"ftp://*/*.user.css",
|
|
"ftp://*/*.user.styl",
|
|
|
|
"*://*/*.user.css?*",
|
|
"*://*/*.user.styl?*",
|
|
|
|
"file://*/*.user.css?*",
|
|
"file://*/*.user.styl?*",
|
|
|
|
"ftp://*/*.user.css?*",
|
|
"ftp://*/*.user.styl?*"
|
|
],
|
|
"run_at": "document_idle",
|
|
"all_frames": false,
|
|
"js": ["content/install-hook-usercss.js"]
|
|
}
|
|
],
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "/images/icon/16w.png",
|
|
"32": "/images/icon/32w.png",
|
|
"19": "/images/icon/19w.png",
|
|
"38": "/images/icon/38w.png"
|
|
},
|
|
"default_title": "Stylus",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"default_locale": "en",
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"chrome_style": false
|
|
},
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "{7a7a4a92-a2a0-41d1-9fd7-1e92480d612d}",
|
|
"strict_min_version": "53.0"
|
|
}
|
|
},
|
|
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2ypG+Z/beZtoYrxxwXYhMwQiAiwRVnSHqdpOSzJdjsXVWdvJjlgEuZcU8kte75w58P45LsRUrwvU6N9x12S6eW84KNEBC8rlZj0RGNoxuhSAcdxneYzjJ9tBkZKOidVedYHHsi3LeaXiLuTNTBR+2lf3uCNcP0ebaFML9uDLdYTGEW4eL3hnEKYPSmT1/xkh4bSGTToCg4YNuWWWoTA0beEOpBWYkPVMarLDQgPzMN5Byu5w3lOS2zL0PPJcmdyk3ez/ZsB4PZKU+h17fVA6+YTvUfxUqLde5i2RiuZhEb6Coo5/W90ZW1yCDC9osjWrxMGYeUMQWHPIgFtDhk4K6QIDAQAB"
|
|
}
|