chrome-tab-modifier
chrome-tab-modifier copied to clipboard
Does not work on Chrome 75.0.3770.100 Mac Mojave 10.14.5
In case of bug report, please fill this template and remove italic lines Otherwise, clear all and type :)
Browser: Chrome Version 75.0.3770.100 (Official Build) (64-bit) Mac OS 10.14.5 (Mojave)
Extension version: 0.22.0
Can be found here: chrome://extensions/?id=hcbgadmbdkiilgpifjgcakjehmafcjai
Expected behavior
What do you expect? That any function of the extension would work. Nothing works, not even the built-in 'Rename-Tab' feature in the extension menu -- that rule does get created, but it doesn't work. Have tried reloading tabs in rules and restarting Chrome; no change.
Actual behavior
What actually happen? No rule actions happen.
Steps to reproduce the behavior
Please describe the steps to help me to reproduce the actual behavior
-
Create a rule, e.g: Name: calendar tab Detection: Contains URL fragment: calendar.google.com ---Actions--- Title: my calendar Pinned: on Protected: on ---end of Action options--- Click Save
-
After the rule is saved, go to open Calendar tab and Refresh. 2a. If no tab already open, open the Calendar URL
expected: After step 2/a, I expect:
- the tab name to change to "my calendar"
- when i try to close the tab, I will get asked if i want to close it
actual:
- Tab name doesn't change
- Tab closes with no warning
Hey @bluefire0
I have the same setup and it works well:
You can try by importing my rule:
{
"settings": {
"enable_new_version_notification": false
},
"rules": [
{
"name": "cal",
"detection": "CONTAINS",
"url_fragment": "calendar.google.com",
"tab": {
"icon": null,
"muted": false,
"pinned": false,
"protected": false,
"title": "my calendar",
"title_matcher": null,
"unique": false,
"url_matcher": null
}
}
]
}
Can you just set the title and leave other actions as default?
Can you open the Chrome Console to check if any error is raised?
Best